Skip to content

Commit

Permalink
HOTFIX: 로그인 관련 API는 기본 검증 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
newbission committed Jun 18, 2024
1 parent 2d3e51c commit 40fcbf5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/users/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


class LoginView(APIView):
# authentication_classes = [CustomCookieAuthentication]
authentication_classes = []
def get(self, request):
social_types = ("kakao", "google")

Expand All @@ -50,6 +50,7 @@ def get(self, request):


class LoginCallbackView(APIView):
authentication_classes = []
def get(self, request, social, dev):
data = request.query_params.copy()

Expand Down

0 comments on commit 40fcbf5

Please sign in to comment.