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
Some checks failed
Build and Push Docker Image / build_and_push (push) Failing after 18m16s
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user