Merge pull request #3329 from owncloud/password-reset-link

add password reset link to login page
This commit is contained in:
David Christofas
2022-03-18 09:09:06 +01:00
committed by GitHub
6 changed files with 33 additions and 6 deletions
+2 -1
View File
@@ -2,5 +2,6 @@ package config
// Service defines the available service configuration.
type Service struct {
Name string `ocisConfig:"-" yaml:"-"`
Name string `ocisConfig:"-" yaml:"-"`
PasswordResetURI string `ocisConfig:"password_reset_uri" env:"IDP_PASSWORD_RESET_URI" desc:"The URI where a user can reset their password."`
}