I have configured LOGIN_EXEMPT_URLS and it's working for admin page but for nested urls of application it isn't. What is the proper way to handle it? ``` AUTH_ADFS = { "LOGIN_EXEMPT_URLS": [ "admin/", "chat/nosso/", ], } urlpatterns = [ path('chat/', include("chat.urls")), ] ```