Moved azure login to local app. Removed ability for new users to be created automatically
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import azure_auth_callback, azure_auth_login, azure_auth_logout
|
||||
|
||||
app_name = "azure_auth"
|
||||
urlpatterns = [
|
||||
path("login", azure_auth_login, name="login"),
|
||||
path("logout", azure_auth_logout, name="logout"),
|
||||
path("callback", azure_auth_callback, name="callback"),
|
||||
]
|
||||
Reference in New Issue
Block a user