Uses of Class
com.greenloop.auth_service.dto.SignUpRequest
Packages that use SignUpRequest
-
Uses of SignUpRequest in com.greenloop.auth_service.controller
Methods in com.greenloop.auth_service.controller with parameters of type SignUpRequestModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AuthResponse> AuthController.adminSignup(@Valid SignUpRequest request, jakarta.servlet.http.HttpServletResponse response) Registers a new admin user.org.springframework.http.ResponseEntity<AuthResponse> AuthController.signup(@Valid SignUpRequest request, jakarta.servlet.http.HttpServletResponse response) Registers a new end-user and sets a JWT in an HTTP-only cookie. -
Uses of SignUpRequest in com.greenloop.auth_service.service
Methods in com.greenloop.auth_service.service with parameters of type SignUpRequestModifier and TypeMethodDescriptionAuthService.adminSignup(SignUpRequest request, jakarta.servlet.http.HttpServletResponse response) Registers a new user with the ADMIN role.AuthService.signup(SignUpRequest request, jakarta.servlet.http.HttpServletResponse response) Registers a new user and sets JWT in cookie.