Private
Public Access
1
0

added js logging

This commit is contained in:
2024-07-16 10:08:17 +02:00
parent 5f60a3910d
commit 34de0252e5
5 changed files with 61 additions and 3 deletions

View File

@@ -240,6 +240,7 @@ urlpatterns = [
# re_path(r'^oauth2/', include('provider.oauth2.urls', namespace = 'oauth2')),
# re_path(r'^o/authorize/$', base.AuthorizationView.as_view(), name="authorize"),
# re_path(r'^o/token/$', base.TokenView.as_view(), name="token"),
re_path('^log/$', views.javascript_log),
re_path('^o/', include('oauth2_provider.urls', namespace='oauth2_provider')),
re_path(r'^', include(router.urls)),
re_path(r'^api-docs/$', views.schema_view, name='schema_view'),