Skip to content

Commit

Permalink
Merge pull request #80 from Alchive/bug/#79
Browse files Browse the repository at this point in the history
Bug: problem/solution ENUM 수정, 소셜 로그인 url 수정
  • Loading branch information
nahowo authored Oct 17, 2024
2 parents aa08b6e + 2a6b24e commit 72ba0ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void onAuthenticationSuccess(HttpServletRequest request, HttpServletRespo
.build().toUriString();
}
else { // 회원가입인 경우
targetUrl = UriComponentsBuilder.fromUriString("http://localhost:3000/signin")
targetUrl = UriComponentsBuilder.fromUriString("http://localhost:5173/sign")
.queryParam("email",email)
.build().toUriString();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.Alchive.backend.domain.problem;

public enum ProblemDifficulty {
LEVEL0("레벨 0"),

LEVEL1("레벨 1"),
LEVEL2("레벨 2"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public enum SolutionLanguage {
PYTHON("python"),
CPP("c++"),
C("c"),
JS("js"),
JAVASCRIPT("javascript"),
JAVA("java");

private final String description;
Expand Down

0 comments on commit 72ba0ba

Please sign in to comment.