diff options
| author | soryu <soryu@soryu.co> | 2026-01-15 00:23:44 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-15 00:23:47 +0000 |
| commit | eff0d844ca6e35bfbc2d5fdaa2d2f92177611f2e (patch) | |
| tree | 90d87d6daf9dd78c31e4b816bb1d282db73821dd /makima/src/server/handlers/contracts.rs | |
| parent | 87044a747b47bd83249d61a45842c7f7b2eae56d (diff) | |
| download | soryu-eff0d844ca6e35bfbc2d5fdaa2d2f92177611f2e.tar.gz soryu-eff0d844ca6e35bfbc2d5fdaa2d2f92177611f2e.zip | |
Contract type system
Diffstat (limited to 'makima/src/server/handlers/contracts.rs')
| -rw-r--r-- | makima/src/server/handlers/contracts.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/makima/src/server/handlers/contracts.rs b/makima/src/server/handlers/contracts.rs index 3d726df..a3aa00a 100644 --- a/makima/src/server/handlers/contracts.rs +++ b/makima/src/server/handlers/contracts.rs @@ -342,6 +342,7 @@ pub async fn create_contract( id: contract.id, name: contract.name, description: contract.description, + contract_type: contract.contract_type, phase: contract.phase, status: contract.status, file_count: 0, @@ -361,6 +362,7 @@ pub async fn create_contract( id: contract.id, name: contract.name, description: contract.description, + contract_type: contract.contract_type, phase: contract.phase, status: contract.status, file_count: 0, @@ -464,6 +466,7 @@ pub async fn update_contract( id: contract.id, name: contract.name, description: contract.description, + contract_type: contract.contract_type, phase: contract.phase, status: contract.status, file_count: 0, @@ -1186,6 +1189,7 @@ pub async fn change_phase( id: contract.id, name: contract.name, description: contract.description, + contract_type: contract.contract_type, phase: contract.phase, status: contract.status, file_count: 0, |
