Skip to content

Commit

Permalink
Feat: naver로그인 url 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Meoyoug committed May 30, 2024
1 parent a77f95e commit f60f6e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/user/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
DeleteUserView,
GoogleLoginView,
KakaoLoginView,
SendCodeView,
SendCodeView, NaverLoginView,
)

# from apps.user.views import CustomConfirmEmailView
Expand All @@ -36,6 +36,7 @@
path("login/", CustomLoginView.as_view(), name="login"),
path("login/social/kakao/", KakaoLoginView.as_view(), name="kakao_login"),
path("login/social/google/", GoogleLoginView.as_view(), name="google_login"),
path("login/social/naver/", NaverLoginView.as_view(), name="naver_login"),
path("logout/", LogoutView.as_view(), name="rest_logout"),
path("detail/", UserDetailsView.as_view(), name="rest_user_details"),
path("leave/", DeleteUserView.as_view(), name="delete-user"),
Expand Down

0 comments on commit f60f6e0

Please sign in to comment.