diff options
| author | soryu <soryu@soryu.co> | 2026-02-05 11:10:23 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-02-05 11:10:23 +0000 |
| commit | f1a50b80f3969d150bd1c31edde0aff05369157e (patch) | |
| tree | eef4a1e8ba4012d5ee67cd5dd01d3a7380f215ec /makima/src/db/models.rs | |
| parent | 5205db1f26cff0b59c567915966ed1dd892ab472 (diff) | |
| download | soryu-f1a50b80f3969d150bd1c31edde0aff05369157e.tar.gz soryu-f1a50b80f3969d150bd1c31edde0aff05369157e.zip | |
Add repository selection to chain creation modal
- Update CreateChainModal to include repository input fields
- Add repository suggestions from history using getRepositorySuggestions
- Support both remote (URL) and local (path) repositories
- First repository added becomes primary automatically
- Pass repositories to CreateChainRequest
Also includes backend changes:
- Copy chain repositories to contracts when created from definitions
- Add created_at field to ChainContractDetail
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'makima/src/db/models.rs')
| -rw-r--r-- | makima/src/db/models.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/makima/src/db/models.rs b/makima/src/db/models.rs index 392d019..e861f1d 100644 --- a/makima/src/db/models.rs +++ b/makima/src/db/models.rs @@ -2825,6 +2825,8 @@ pub struct ChainContractDetail { /// Maximum evaluation retry attempts #[sqlx(default)] pub max_evaluation_retries: i32, + /// When the chain contract was created + pub created_at: DateTime<Utc>, } /// DAG graph structure for visualization |
