Moved azure login to local app. Removed ability for new users to be created automatically

This commit is contained in:
John Mullins
2023-12-15 15:00:41 +11:00
parent 7519585c84
commit 1240ab2538
9 changed files with 247 additions and 3 deletions
+10
View File
@@ -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"),
]