social google login added

This commit is contained in:
M-Usman-Dev 2023-03-28 20:03:59 +05:00
parent 8497b2c5ab
commit c3fa66c111

View File

@ -12,6 +12,6 @@ urlpatterns = [
path("~redirect/", view=user_redirect_view, name="redirect"),
path("~update/", view=user_update_view, name="update"),
path("<str:username>/", view=user_detail_view, name="detail"),
path('rest-auth/google/', GoogleLogin.as_view(), name='google_login'),
path('rest-auth/google/', GoogleLogin.as_view(), name='google_login'),
]