pweb-api-ets / controller /auth /auth_register_controller.go
lifedebugger's picture
Deploy files from GitHub repository
131eba4
raw
history blame contribute delete
632 Bytes
package auth
import (
"github.com/gin-gonic/gin"
"pweb-api.abdanhafidz.com/controller"
"pweb-api.abdanhafidz.com/models"
"pweb-api.abdanhafidz.com/services"
)
func Register(c *gin.Context) {
register := services.RegisterService{}
registerController := controller.Controller[models.RegisterRequest, models.Account, models.Account]{
Service: &register.Service,
}
registerController.RequestJSON(c, func() {
registerController.Service.Constructor.Password = registerController.Request.Password
registerController.Service.Constructor.Email = registerController.Request.Email
register.Create()
})
}