diff options
Diffstat (limited to 'makima/src/server')
| -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, |
