from django.urls import path from .views import EntraConfigView, LoginView, LogoutView, RefreshView urlpatterns = [ path("login", LoginView.as_view()), path("refresh", RefreshView.as_view()), path("logout", LogoutView.as_view()), path("entra/config", EntraConfigView.as_view()), ]