From 03fd5caad4c541a85d7c8810c5dbb478654a23e2 Mon Sep 17 00:00:00 2001 From: David Trattnig <david@subsquare.at> Date: Wed, 14 Feb 2024 16:16:00 +0100 Subject: [PATCH] chore: update sample settings #195 --- steering/sample_settings.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/steering/sample_settings.py b/steering/sample_settings.py index e0d02f4d..6f414bfa 100644 --- a/steering/sample_settings.py +++ b/steering/sample_settings.py @@ -1,9 +1,10 @@ -# sample settings for steering +# Advanced settings for Steering +# Go to https://docs.aura.radio to learn how to configure LDAP. -from .settings import * # noqa - -ADMINS = [("Ernesto", "ernesto@helsinki.at")] -MANAGERS = ADMINS - -TIME_ZONE = "America/La_Paz" +# import the base settings +from steering.settings import * # noqa +# 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 -- GitLab