Skip to content

Commit

Permalink
Merge pull request #89 from Dan-sup/feat/danceclass
Browse files Browse the repository at this point in the history
Feat/danceclass : 유지보수를 위한 설정
  • Loading branch information
ImTakGyun authored Oct 20, 2023
2 parents 1ac6c82 + f14ed0a commit b49a783
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.dansup.server.api.danceclass.domain;

public enum Method {

OD("원데이"), R("정규반"), P("공연반"), M("전문반"), S("세션");
//팝업/그룹레슨/개인레슨/쉐어
OD("원데이"), R("정규반"), P("공연반"), M("전문반"), S("세션"), PU("팝업"), GL("그룹레슨"), PL("개인레슨"), SH("쉐어");

private String method;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,4 +196,4 @@ private List<String> getClassGenres(List<GenreRequestDto> genres) {
log.info("[genreList]: {}", genreList);
return genreList;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ private String setSuccessRedirectUrl(String requestUrl, int requestPort) {
redirectUrl = "http://localhost:3000/login/oauth2/success";
}
if (requestUrl.equals("dan-sup.com")) {
redirectUrl = "https://www.dan-sup.com/login/oauth2/success";
// redirectUrl = "https://www.dan-sup.com/login/oauth2/success";
redirectUrl = "http://localhost:3000/login/oauth2/success";
}

return redirectUrl;
Expand Down

0 comments on commit b49a783

Please sign in to comment.