chore: build
This commit is contained in:
@@ -2,12 +2,14 @@ package auth
|
||||
|
||||
import "github.com/gin-gonic/gin"
|
||||
|
||||
// RegisterCustomerRoutes mounts the customer-space auth endpoints. Deliberately
|
||||
// NOT called from cmd/api/main.go in this phase: there is no customer-facing
|
||||
// module (cart/orders) yet, so exposing these routes today would just be a
|
||||
// dead surface. Wiring is ready for when that module is activated.
|
||||
// RegisterCustomerRoutes mounts the customer-space auth endpoints. Always
|
||||
// mounted (unlike earlier phases), but Register/Login reject every request
|
||||
// with 403 while the admin has customer accounts turned off
|
||||
// (CustomerHandler.accountsEnabledOrAbort), so the surface is a no-op until
|
||||
// then.
|
||||
func RegisterCustomerRoutes(rg *gin.RouterGroup, h *CustomerHandler, requireCustomer gin.HandlerFunc, loginRateLimit gin.HandlerFunc) {
|
||||
group := rg.Group("/auth/customer")
|
||||
group.POST("/register", loginRateLimit, h.Register)
|
||||
group.POST("/login", loginRateLimit, h.Login)
|
||||
group.POST("/refresh", h.Refresh)
|
||||
group.POST("/logout", h.Logout)
|
||||
|
||||
Reference in New Issue
Block a user