Some housekeeping
[redakcja.git] / src / redakcja / settings / defaults.py
index 688e2b6..547269b 100644 (file)
@@ -1,5 +1,6 @@
-# -*- coding: utf-8 -*-
-from __future__ import absolute_import
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
 import os.path
 
 PROJECT_ROOT = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
@@ -23,6 +24,8 @@ ADMINS = (
     (u'Radek Czajka', 'radoslaw.czajka@nowoczesnapolska.org.pl'),
 )
 
+INTERNAL_IPS = ['127.0.0.1']
+
 MANAGERS = ADMINS
 
 # Local time zone for this installation. Choices can be found here:
@@ -63,5 +66,6 @@ BROKER_URL = 'django://'
 
 SHOW_APP_VERSION = False
 
-CAS_USER_ATTRS_MAP = {
+CAS_APPLY_ATTRIBUTES_TO_USER = True
+CAS_RENAME_ATTRIBUTES = {
     'email': 'email', 'firstname': 'first_name', 'lastname': 'last_name'}