Added ticket edit functionality

As said, also minor change to database for testing purposes
This commit is contained in:
2026-04-23 20:13:09 +02:00
parent b905ffc9b1
commit 5e643503aa
4 changed files with 56 additions and 5 deletions

View File

@@ -42,3 +42,8 @@ pub struct TicketCreateScheme {
pub description: String,
pub room: i16,
}
#[derive(Deserialize, Serialize, Debug)]
pub struct TicketUpdateScheme {
pub status: String,
}