Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:LikelionUniv/Server into stag/client
Browse files Browse the repository at this point in the history
  • Loading branch information
seulgi99 committed Jul 5, 2024
2 parents b28531c + 8a485bc commit a16f15c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@Slf4j
@RestController("adminuser.controller.HeadquarterUserController")
@RequestMapping("/v1/headquarters")
@RequiredArgsConstructor
@Tag(name = "UserByHeadquarters", description = "본사에 의한 사용자 관련 API")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
public enum UserErrorCode implements BaseErrorCode {

NOT_SUPPORTED_LOGIN_TYPE(BAD_REQUEST, "LOGIN_TYPE_400", "해당 방식은 지원하지않는 로그인 방식입니다."),
USER_NOT_MATCH(FORBIDDEN, "USER_403", "사용자가 일치하지 않습니다."),
NO_ORDINAL_USER_ERROR(FORBIDDEN, "USER_403_1", "해당 유저의 기수정보가 존재하지 않습니다. 대학관리자 혹은 총관리자에게 문의해 주세요."),
USER_NOT_FOUND(NOT_FOUND, "USER_404", "유저를 찾을 수 없습니다."),
EMAIL_ALREADY_REGISTERED(NOT_FOUND, "USER_409", "같은 이메일로 회원가입된 계정이 있습니다.");
Expand Down

0 comments on commit a16f15c

Please sign in to comment.