1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

Logging support

This commit is contained in:
Yohann D'ANELLO
2020-02-24 18:18:44 +01:00
parent c8dd41c1d7
commit fd529a53c8
11 changed files with 279 additions and 19 deletions

View File

@ -61,6 +61,7 @@ INSTALLED_APPS = [
'member',
'note',
'api',
'logs',
]
LOGIN_REDIRECT_URL = '/note/transfer/'

View File

@ -21,4 +21,6 @@ urlpatterns = [
# Include Django REST API
path('api/', include('api.urls')),
path('logs/', include('logs.urls')),
]