add template configuration

This commit is contained in:
2020-11-03 09:53:16 +01:00
parent 5b62397a23
commit bceee0582e
3 changed files with 57 additions and 9 deletions

View File

@@ -6,7 +6,7 @@ APP_AUTH=CAS
# MAIL sendmail / smtp
MAILER_METHOD=sendmail
MAILER_URL=
MAILER_URL=%%getVar('schedule_email_url', '')
MAILER_NOREPLY=noreply@noreply.fr
MAILER_DEFAULT_NOTIF=%%getVar('schedule_email_global_notif', '')
@@ -37,5 +37,17 @@ CAS_HOST=%%eolesso_adresse
CAS_PORT=%%eolesso_port
CAS_PATH=%%eolesso_cas_folder
OFFICE_HOUR_START=09:00
OFFICE_HOUR_END=17:30
OFFICE_HOUR_START=%%getVar('schedule_office_hour_start', '')
OFFICE_HOUR_END=%%getVar('schedule_office_hour_end', '')
## Sentry DSN
SENTRY_DSN=%%getVar('schedule_sentry_dsn', '')
## Dolibarr
%if %%getVar('schedule_dolibarr_api', '') == 'oui'
DOLIBARR_ACTIVE=true
%else
DOLIBARR_ACTIVE=false
%end if
DOLIBARR_API_KEY=%%getVar('schedule_dolibarr_apikey', '')
DOLIBARR_URI=%%getVar('schedule_dolibarr_uri', '')