kers/oauth/urls.py

11 lines
228 B
Python
Raw Normal View History

2020-07-22 03:03:01 +00:00
from django.contrib.auth import logout
2020-07-22 01:48:22 +00:00
from django.urls import path
from . import views
2020-07-22 13:10:49 +00:00
app_name = "oauth"
2020-07-22 01:48:22 +00:00
urlpatterns = [
2020-07-22 13:10:49 +00:00
path('register', views.register, name='login'),
2020-07-22 01:48:22 +00:00
path('authorized', views.register_callback),
]