Skip to content
Snippets Groups Projects

Update sample settings

Merged David Trattnig requested to merge update-sample-config into main
2 files
+ 9
8
Compare changes
  • Side-by-side
  • Inline
Files
2
# sample settings for steering
# Advanced settings for Steering
 
# Go to https://docs.aura.radio to learn how to configure LDAP.
from .settings import * # noqa
# import the base settings
from steering.settings import * # noqa
ADMINS = [("Ernesto", "ernesto@helsinki.at")]
MANAGERS = ADMINS
TIME_ZONE = "America/La_Paz"
 
# Import classes, functions, etc.
 
from django_auth_ldap.config import GroupOfNamesType
 
# and use them to extend or overwrite settings
 
AUTH_LDAP_GROUP_TYPE = GroupOfNamesType(name_attr="cn")
 
\ No newline at end of file
Loading