diff options
| author | soryu <soryu@soryu.co> | 2026-02-07 16:58:38 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-02-07 16:58:38 +0000 |
| commit | 8f757f561eeb397aaea70d7c10d41445cc5e50b5 (patch) | |
| tree | db64ab219594f069a9f0e11ff0cba10eeb80f862 /makima/src/db/models.rs | |
| parent | 1b72449496ce3a057a43d002c8042d5e7a1d6576 (diff) | |
| download | soryu-8f757f561eeb397aaea70d7c10d41445cc5e50b5.tar.gz soryu-8f757f561eeb397aaea70d7c10d41445cc5e50b5.zip | |
Show directive init on frontend
Diffstat (limited to 'makima/src/db/models.rs')
| -rw-r--r-- | makima/src/db/models.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makima/src/db/models.rs b/makima/src/db/models.rs index ec4ee15..bc90942 100644 --- a/makima/src/db/models.rs +++ b/makima/src/db/models.rs @@ -2849,13 +2849,13 @@ pub struct UpdateDirectiveRequest { pub version: Option<i32>, } -/// Directive with its chains for detail view. +/// Directive with its chains and steps for detail view. #[derive(Debug, Serialize, ToSchema)] #[serde(rename_all = "camelCase")] pub struct DirectiveWithChains { #[serde(flatten)] pub directive: Directive, - pub chains: Vec<DirectiveChain>, + pub chains: Vec<ChainWithSteps>, } /// Full row from directive_chains table. |
