urls.py 227 B

12345678910
  1. from django.urls import path
  2. from .views.sso_view import SSOView
  3. app_name = "sso"
  4. urlpatterns = [
  5. path('sso/authorize', SSOView.AuthorizeUrl.as_view()),
  6. path('oauth/exchange-code', SSOView.ExchangeCode.as_view()),
  7. ]