From eff0d844ca6e35bfbc2d5fdaa2d2f92177611f2e Mon Sep 17 00:00:00 2001 From: soryu Date: Thu, 15 Jan 2026 00:23:44 +0000 Subject: Contract type system --- makima/src/server/handlers/contracts.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'makima/src/server') 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, -- cgit v1.2.3