diff --git a/config/urls.py b/config/urls.py index f96e53e3..ee558a17 100755 --- a/config/urls.py +++ b/config/urls.py @@ -73,7 +73,6 @@ CustomLoginView, CustomSignupView, CustomSocialSignupViewView, - ProfileView, UserViewSet, UserAvatar, DeleteUserView, @@ -171,7 +170,8 @@ DeleteImmediatelyView.as_view(), name="profile-delete-immediately", ), - path("users//", ProfileView.as_view(), name="profile-user"), + # Return a 404 for now. Profile view is not ready. + # path("users//", ProfileView.as_view(), name="profile-user"), path("users/avatar/", UserAvatar.as_view(), name="user-avatar"), path("api/v1/users/me/", CurrentUserAPIView.as_view(), name="current-user"), path(