X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/d7b22d05953c0f6380f44693d08d3cd92e40fb09..0eafaa3ce7287b5ba7a95f3b6d528dffd9648a1d:/src/cas/settings.py diff --git a/src/cas/settings.py b/src/cas/settings.py index 4101776..e71c5d4 100644 --- a/src/cas/settings.py +++ b/src/cas/settings.py @@ -20,6 +20,8 @@ DATABASES = { } } +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' + # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name # although not all choices may be available on all operating systems. @@ -37,6 +39,8 @@ SITE_ID = 1 # to load the internationalization machinery. USE_I18N = True +USE_TZ = True + # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" MEDIA_ROOT = path.join(PROJECT_ROOT, '../../media/') @@ -85,11 +89,13 @@ LOCALE_PATHS = ( INSTALLED_APPS = ( 'accounts.apps.AccountsConfig', 'emails.apps.EmailsConfig', + 'ftp', 'services.apps.ServicesConfig', 'ssh_keys.apps.SshKeysConfig', 'cas_provider', 'django_gravatar', + 'oidc_provider', 'django.contrib.auth', 'django.contrib.contenttypes', @@ -122,6 +128,10 @@ GRAVATAR_URL_PREFIX = 'https://www.gravatar.com/' SITE_TITLE = 'Fundacja Nowoczesna Polska' + +OIDC_USERINFO = 'emails.oidc.userinfo' + + # Import localsettings file, which may override settings defined here try: from .localsettings import *