Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

access 토큰 없이 특정 리폼러의 data를 email로 가져오도록 revert #178

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion users/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
path("/token/refresh", UserTokenRefreshView.as_view(), name="token_refresh"),
path("/reformer", ReformerProfileView.as_view(), name="reformer"),
path(
"/reformer/<str:nickname>",
"/reformer/<str:email>",
ReformerSpecificProfileView.as_view(),
name="specific_reformer",
),
Expand Down
4 changes: 2 additions & 2 deletions users/views/reformer_view/reformer_specific_profile_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class ReformerSpecificProfileView(APIView):
AllowAny,
]

def get(self, request, nickname: str) -> Response:
def get(self, request, email: str) -> Response:
try:
user = User.objects.get(nickname=nickname)
user = User.objects.get(email=email)
reformer_profile = Reformer.objects.get(user=user)
if not reformer_profile:
raise Reformer.DoesNotExist(
Expand Down
Loading