urls.py 353 B

123456789101112131415
  1. from django.urls import re_path
  2. from social_auth.views import auth, complete
  3. urlpatterns = [
  4. # authentication
  5. re_path(
  6. r"^associate/complete/(?P<backend>[^/]+)/$", complete, name="socialauth_associate_complete"
  7. ),
  8. re_path(
  9. r"^associate/(?P<backend>[^/]+)/$",
  10. auth,
  11. name="socialauth_associate",
  12. ),
  13. ]