lot of new functionalities

This commit is contained in:
Arnaud Delcasse
2025-10-14 18:11:13 +02:00
parent a6f70a6e85
commit d992a7984f
164 changed files with 15113 additions and 9442 deletions

View File

@@ -0,0 +1,18 @@
package web
import (
"github.com/gorilla/mux"
)
func (ws *WebServer) setupVehiclesRoutes(appRouter *mux.Router) {
vehicles := appRouter.PathPrefix("/vehicles").Subrouter()
vehicles.HandleFunc("/", ws.appHandler.VehiclesSearchHTTPHandler())
// Bookings
vehicles.HandleFunc("/bookings/", ws.appHandler.VehiclesBookingsListHTTPHandler())
vehicles.HandleFunc("/bookings/{bookingid}", ws.appHandler.VehicleBookingDisplayHTTPHandler())
vehicles.HandleFunc("/bookings/{bookingid}/documents/{document}", ws.appHandler.BookingDocumentDownloadHTTPHandler())
// Vehicle booking
vehicles.HandleFunc("/v/{vehicleid}/b/{beneficiaryid}", ws.appHandler.BookVehicleHTTPHandler())
}