rentease/internal/server/routes.go
2024-03-10 15:30:49 +01:00

17 lines
720 B
Go

package server
func (s Server) MountHandlers() {
// public
s.Router.GET("/", handleHomePage())
s.Router.POST("/request-booking", handleRequestBooking())
// admin
s.Router.GET("/bookings", handleListBookingPage(s.bs, s.hc))
s.Router.GET("/bookings/new", handleNewBookingPage())
s.Router.POST("/bookings/new", handleCreateBooking(s.bs))
s.Router.GET("/bookings/:id", handleBookingPage(s.bs, s.hc))
s.Router.POST("/bookings/:id/items", handleCreateItem(s.bs))
s.Router.GET("/bookings/pdf/:id", handleCreateInvoicePdf(s.bs, s.ps, s.hc))
s.Router.GET("/reports", handleReportsPage())
s.Router.GET("/reports/do", handleComputeReport(s.bs, s.hc))
s.Router.GET("/reports/pdf", handleCreateReportPdf(s.bs, s.ps))
}