Projet

Général

Profil

0001-settings-remove-admins-variable-from-default-configu.patch

Nicolas Roche, 25 mars 2020 11:01

Télécharger (904 octets)

Voir les différences:

Subject: [PATCH] settings: remove admins variable from default configuration
 (#40999)

 zoo/settings.py | 4 ----
 1 file changed, 4 deletions(-)
zoo/settings.py
216 216
        'name': 'Tiers SAGA',
217 217
    }
218 218
}
219 219
ZOO_NANTERRE_RSU_WS_DEBUG = False
220 220
ZOO_NANTERRE_RSU_TIMEOUT = 20
221 221
# le journal expire après 2 ans
222 222
ZOO_NANTERRE_LOG_EXPIRATION_DAYS = 365 * 2
223 223

  
224
ADMINS = [
225
  ('Entr\'ouvert admins', 'admin@entrouvert.com'),
226
]
227

  
228 224
local_settings_file = os.environ.get('ZOO_SETTINGS_FILE')
229 225
if local_settings_file and os.path.exists(local_settings_file):
230 226
    execfile(local_settings_file)
231
-