diff options
| author | Amir Zarrinkafsh <nightah@me.com> | 2020-11-16 20:58:29 +1100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-16 20:58:29 +1100 | 
| commit | 106c9032ad528846ab8b0583c5135bef96280b80 (patch) | |
| tree | 013d967c082bbbcc0e67a738882aa615ab9a5203 /web/public | |
| parent | f42b1ea2295481c6d0565d1128536ebc3a1c9166 (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.html | 2 | 
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>    <!--  | 
