mirror of
https://github.com/grafana/grafana.git
synced 2025-01-24 07:17:08 -06:00
Merge branch 'ldap_login_hints' of https://github.com/tmonk42/grafana into tmonk42-ldap_login_hints
Conflicts: conf/defaults.ini pkg/setting/setting.go closes #2571 closes #2494
This commit is contained in:
commit
fab1062c0b
@ -142,6 +142,9 @@ auto_assign_org_role = Viewer
|
|||||||
# Require email validation before sign up completes
|
# Require email validation before sign up completes
|
||||||
verify_email_enabled = false
|
verify_email_enabled = false
|
||||||
|
|
||||||
|
# Background text for the user field on the login page
|
||||||
|
login_hint = email or username
|
||||||
|
|
||||||
#################################### Anonymous Auth ##########################
|
#################################### Anonymous Auth ##########################
|
||||||
[auth.anonymous]
|
[auth.anonymous]
|
||||||
# enable anonymous access
|
# enable anonymous access
|
||||||
|
@ -134,6 +134,9 @@
|
|||||||
# Default role new users will be automatically assigned (if disabled above is set to true)
|
# Default role new users will be automatically assigned (if disabled above is set to true)
|
||||||
;auto_assign_org_role = Viewer
|
;auto_assign_org_role = Viewer
|
||||||
|
|
||||||
|
# Background text for the user field on the login page
|
||||||
|
;login_hint = email or username
|
||||||
|
|
||||||
#################################### Anonymous Auth ##########################
|
#################################### Anonymous Auth ##########################
|
||||||
[auth.anonymous]
|
[auth.anonymous]
|
||||||
# enable anonymous access
|
# enable anonymous access
|
||||||
|
@ -28,6 +28,7 @@ func LoginView(c *middleware.Context) {
|
|||||||
settings["googleAuthEnabled"] = setting.OAuthService.Google
|
settings["googleAuthEnabled"] = setting.OAuthService.Google
|
||||||
settings["githubAuthEnabled"] = setting.OAuthService.GitHub
|
settings["githubAuthEnabled"] = setting.OAuthService.GitHub
|
||||||
settings["disableUserSignUp"] = !setting.AllowUserSignUp
|
settings["disableUserSignUp"] = !setting.AllowUserSignUp
|
||||||
|
settings["loginHint"] = setting.LoginHint
|
||||||
|
|
||||||
if !tryLoginUsingRememberCookie(c) {
|
if !tryLoginUsingRememberCookie(c) {
|
||||||
c.HTML(200, VIEW_INDEX)
|
c.HTML(200, VIEW_INDEX)
|
||||||
|
@ -82,6 +82,7 @@ var (
|
|||||||
AutoAssignOrg bool
|
AutoAssignOrg bool
|
||||||
AutoAssignOrgRole string
|
AutoAssignOrgRole string
|
||||||
VerifyEmailEnabled bool
|
VerifyEmailEnabled bool
|
||||||
|
LoginHint string
|
||||||
|
|
||||||
// Http auth
|
// Http auth
|
||||||
AdminUser string
|
AdminUser string
|
||||||
@ -436,6 +437,7 @@ func NewConfigContext(args *CommandLineArgs) error {
|
|||||||
AutoAssignOrg = users.Key("auto_assign_org").MustBool(true)
|
AutoAssignOrg = users.Key("auto_assign_org").MustBool(true)
|
||||||
AutoAssignOrgRole = users.Key("auto_assign_org_role").In("Editor", []string{"Editor", "Admin", "Read Only Editor", "Viewer"})
|
AutoAssignOrgRole = users.Key("auto_assign_org_role").In("Editor", []string{"Editor", "Admin", "Read Only Editor", "Viewer"})
|
||||||
VerifyEmailEnabled = users.Key("verify_email_enabled").MustBool(false)
|
VerifyEmailEnabled = users.Key("verify_email_enabled").MustBool(false)
|
||||||
|
LoginHint = users.Key("login_hint").String()
|
||||||
|
|
||||||
// anonymous access
|
// anonymous access
|
||||||
AnonymousEnabled = Cfg.Section("auth.anonymous").Key("enabled").MustBool(false)
|
AnonymousEnabled = Cfg.Section("auth.anonymous").Key("enabled").MustBool(false)
|
||||||
|
@ -18,6 +18,7 @@ function (angular, coreModule, config) {
|
|||||||
$scope.googleAuthEnabled = config.googleAuthEnabled;
|
$scope.googleAuthEnabled = config.googleAuthEnabled;
|
||||||
$scope.githubAuthEnabled = config.githubAuthEnabled;
|
$scope.githubAuthEnabled = config.githubAuthEnabled;
|
||||||
$scope.disableUserSignUp = config.disableUserSignUp;
|
$scope.disableUserSignUp = config.disableUserSignUp;
|
||||||
|
$scope.loginHint = config.loginHint;
|
||||||
|
|
||||||
$scope.loginMode = true;
|
$scope.loginMode = true;
|
||||||
$scope.submitBtnText = 'Log in';
|
$scope.submitBtnText = 'Log in';
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
<strong>User</strong>
|
<strong>User</strong>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<input type="text" name="username" class="tight-form-input last" required ng-model='formModel.user' placeholder="email or username" style="width: 253px">
|
<input type="text" name="username" class="tight-form-input last" required ng-model='formModel.user' placeholder={{loginHint}} style="width: 253px">
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
|
Loading…
Reference in New Issue
Block a user