Skip to content

Commit

Permalink
chore: docker-compose에 kakao Admin key를 추가한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarltj committed Jun 20, 2024
1 parent a4e9da7 commit 5d869ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
APPLE_TEAM_ID: ${APPLE_TEAM_ID}
APPLE_KEY_ID: ${APPLE_KEY_ID}
APPLE_CLIENT_ID: ${APPLE_CLIENT_ID}

KAKAO_ADMIN_KEY: ${KAKAO_ADMIN_KEY}
redis:
container_name: moneymong-redis
image: redis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public User save(User unsavedUser) {
public User registerUser(OAuthUserInfo oauthUserInfo) {
User newUser = User.of(
oauthUserInfo.getEmail(),
oauthUserInfo.getNickname() == null ? "tester" : oauthUserInfo.getNickname(),
oauthUserInfo.getNickname() == null ? "유저" : oauthUserInfo.getNickname(),
oauthUserInfo.getProvider(),
oauthUserInfo.getOauthId()
);
Expand Down

0 comments on commit 5d869ac

Please sign in to comment.