Commit b771f131 authored by Brian Hatchet's avatar Brian Hatchet :speech_balloon:

Quotes and defaults for email_confirmation config

parent 5ffc998c
1 merge request!22Adding a quote pipe to the default port
Pipeline #107348520 passed with stage
in 1 minute and 7 seconds
......@@ -671,15 +671,15 @@ data:
'host' => {{ .Values.email.host | quote }},
'username' => {{ .Values.email.username | quote }},
'password' => {{ .Values.email.password | quote }},
'port' => {{ .Values.email.port | default 465 | quote }},
'port' => {{ .Values.email.port | default 465 }},
'auth' => {{ .Values.email.auth | default true }},
'smtp_secure' => {{ .Values.email.smtp_secure | quote }}
]
]);
$CONFIG->set('email_confirmation', [
'signing_key' => '{{ .Values.email_confirmation.signing_key }}',
'expiration' => {{ .Values.email_confirmation.expiration }},
'signing_key' => '{{ .Values.email_confirmation.signing_key | quote }}',
'expiration' => {{ .Values.email_confirmation.expiration | default 300 }},
]);
$CONFIG->cinemr_url = '{{ .Values.transcoder.cinemr_url }}';
......
Please register or to comment