Skip to content

Commit

Permalink
feat(UserActivityManager) : cors 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Due-IT committed Dec 21, 2024
1 parent 8b36e3d commit fcd20db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class WebConfig(private val requestLoggingInterceptor: RequestLoggingInterceptor
registry.addMapping("/**")
.allowedOrigins(
"https://zepelown.site",
"https://master--wabicheck.netlify.app/",
"https://master--wabicheck.netlify.app",
"http://localhost:3000",
"http://localhost:8080"
)
Expand Down
1 change: 1 addition & 0 deletions wabi/src/main/kotlin/com/wap/wabi/exception/ErrorCode.kt
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,5 @@ enum class ErrorCode(
BAD_REQUEST_EXIST_ADMIN(HttpStatus.BAD_REQUEST, "800-4", "이미 존재하는 어드민입니다."),
BAD_REQUEST_NOT_EXIST_ADMIN(HttpStatus.BAD_REQUEST, "800-5", "존재하지 않는 어드민입니다."),
BAD_REQUEST_ADMIN_LOGIN(HttpStatus.BAD_REQUEST, "800-6", "일치하는 계정이 없습니다."),
BAD_REQUEST_REFRESH_TOKEN(HttpStatus.BAD_REQUEST, "800-7", "리프레시 토큰이 만료되었습니다."),
}

0 comments on commit fcd20db

Please sign in to comment.