summaryrefslogtreecommitdiff
path: root/web/public
diff options
context:
space:
mode:
authorAmir Zarrinkafsh <nightah@me.com>2020-11-16 20:58:29 +1100
committerGitHub <noreply@github.com>2020-11-16 20:58:29 +1100
commit106c9032ad528846ab8b0583c5135bef96280b80 (patch)
tree013d967c082bbbcc0e67a738882aa615ab9a5203 /web/public
parentf42b1ea2295481c6d0565d1128536ebc3a1c9166 (diff)
[CI] Fix development workflow (#1465)
Since merging #1135 and utilising Go templating to enable/disable the rememeber me and password reset features these have stopped working in the development workflow. During frontend development if someone wants to modify these values they should modify the `.env.development` file accordingly.
Diffstat (limited to 'web/public')
-rw-r--r--web/public/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/public/index.html b/web/public/index.html
index 4ae162c2b..16a5d184e 100644
--- a/web/public/index.html
+++ b/web/public/index.html
@@ -25,7 +25,7 @@
<title>Login - Authelia</title>
</head>
-<body data-basepath="%PUBLIC_URL%" data-rememberme="{{.RememberMe}}" data-disable-resetpassword="{{.ResetPassword}}">
+<body data-basepath="%PUBLIC_URL%" data-rememberme="%REACT_APP_REMEMBER_ME%" data-resetpassword="%REACT_APP_RESET_PASSWORD%">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--