From c8439f38616141d138c76efbfd58e3f5033d2672 Mon Sep 17 00:00:00 2001 From: rsakeys Date: Thu, 25 Jun 2020 15:22:37 +0100 Subject: [PATCH] Update variable names in Dash's configuration template. --- templates/dash/config.py.template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/dash/config.py.template b/templates/dash/config.py.template index 4897f6d..8db84ce 100644 --- a/templates/dash/config.py.template +++ b/templates/dash/config.py.template @@ -74,14 +74,14 @@ Player activation ACTIVATE_PLAYER : bool Activate player automatically so no email needs to be sent. Enabling this option requires a SendGrid API key. -LEGACY_REDIRECT_LINK : str +LEGACY_ACTIVATE_REDIRECT : str URL player is taken to for activation. -VANILLA_REDIRECT_LINK : str +VANILLA_ACTIVATE_REDIRECT : str URL player is taken to for activation. """ ACTIVATE_PLAYER = {{ if not .Env.WEB_SENDGRID_KEY }}True{{ else }}False{{ end }} -LEGACY_REDIRECT_LINK = '{{ .Env.WEB_LEGACY_PLAY }}' -VANILLA_REDIRECT_LINK = '{{ .Env.WEB_VANILLA_PLAY }}' +LEGACY_ACTIVATE_REDIRECT = '{{ .Env.WEB_LEGACY_PLAY }}' +VANILLA_ACTIVATE_REDIRECT = '{{ .Env.WEB_VANILLA_PLAY }}' """