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

@@ -11,14 +11,16 @@ func ReadConfig() (*viper.Viper, error) {
"name": "COOPGO Fleets",
"dev_env": false,
"storage": map[string]any{
"type": "mongodb",
"mongodb": map[string]any{
"host": "localhost",
"port": "27017",
"db_name": "coopgo_platform",
"collections": map[string]any{
"vehicles": "fleet_vehicles",
"bookings": "fleet_bookings",
"db": map[string]any{
"type": "mongodb",
"mongodb": map[string]any{
"host": "localhost",
"port": "27017",
"db_name": "coopgo_platform",
"collections": map[string]any{
"vehicles": "vehicles",
"bookings": "bookings",
},
},
},
},