Disable register functionality

This commit is contained in:
2026-01-24 20:50:29 +01:00
parent 94671c4ed4
commit c7644f7df8

View File

@@ -11,7 +11,7 @@ func SetupRoutes(r *gin.Engine) {
// Public routes
auth := r.Group("/auth")
{
auth.POST("/register", handlers.Register)
// auth.POST("/register", handlers.Register)
auth.POST("/login", handlers.Login)
}