10 lines
228 B
Python
10 lines
228 B
Python
from django.contrib.auth import logout
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "oauth"
|
|
urlpatterns = [
|
|
path('register', views.register, name='login'),
|
|
path('authorized', views.register_callback),
|
|
]
|