1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

Hide the logout link when using auth proxy

Fixes #1250
This commit is contained in:
Ilya Mateyko 2021-10-08 15:13:37 +03:00 committed by fguillot
parent 4565dd406b
commit c2c9db737b
2 changed files with 8 additions and 3 deletions

View file

@ -45,6 +45,9 @@ func (f *funcMap) Map() template.FuncMap {
"hasOAuth2Provider": func(provider string) bool {
return config.Opts.OAuth2Provider() == provider
},
"hasAuthProxy": func() bool {
return config.Opts.AuthProxyHeader() != ""
},
"route": func(name string, args ...interface{}) string {
return route.Path(f.router, name, args...)
},