CAS Server support
This commit is contained in:
parent
8c364c769e
commit
4b7f40a046
4 changed files with 10 additions and 0 deletions
|
|
@ -55,6 +55,8 @@ INSTALLED_APPS = [
|
|||
# Autocomplete
|
||||
'dal',
|
||||
'dal_select2',
|
||||
# CAS
|
||||
'cas_server',
|
||||
|
||||
# Note apps
|
||||
'activity',
|
||||
|
|
@ -180,3 +182,7 @@ STATIC_URL = '/static/'
|
|||
|
||||
ALIAS_VALIDATOR_REGEX = r''
|
||||
|
||||
# CAS Settings
|
||||
CAS_LOGO_URL = "/static/img/Saperlistpopette.png"
|
||||
CAS_FAVICON_URL = "/static/favicon/favicon-32x32.png"
|
||||
|
||||
|
|
|
|||
|
|
@ -19,6 +19,9 @@ urlpatterns = [
|
|||
path('admin/doc/', include('django.contrib.admindocs.urls')),
|
||||
path('admin/', admin.site.urls),
|
||||
|
||||
# Include CAS routers
|
||||
path(r'cas/', include('cas_server.urls', namespace="cas_server")),
|
||||
|
||||
# Include Django REST API
|
||||
path('api/', include('api.urls')),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue