feat: ajout manual_status et status_history aux réservations
Some checks failed
Build and Push Docker Image / build_and_push (push) Failing after 18m16s

This commit is contained in:
Arnaud Delcasse
2026-02-26 17:54:02 +01:00
parent 8f805162e2
commit d6ce717c75
5 changed files with 217 additions and 27 deletions

View File

@@ -26,4 +26,18 @@ message Booking {
Vehicle vehicle = 9;
bool deleted = 10;
string manual_status = 11;
repeated StatusHistoryEntry status_history = 12;
}
message StatusHistoryEntry {
string from_status = 1;
string to_status = 2;
string user_id = 3;
string user_name = 4;
string group_id = 5;
string group_name = 6;
google.protobuf.Timestamp date = 7;
string comment = 8;
}