Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
90400bf5
Commit
90400bf5
authored
Aug 07, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ldap): fix for ldap users with empty email address, fixes #2461
parent
c43f2bbb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
CHANGELOG.md
+1
-0
pkg/services/sqlstore/user.go
+4
-0
No files found.
CHANGELOG.md
View file @
90400bf5
...
...
@@ -5,6 +5,7 @@
-
[
Issue #2442
](
https://github.com/grafana/grafana/issues/2442
)
. Templating: Fix text panel when using template variables in text in in repeated panel
-
[
Issue #2446
](
https://github.com/grafana/grafana/issues/2446
)
. InfluxDB: Fix for using template vars inside alias field (InfluxDB 0.9)
-
[
Issue #2460
](
https://github.com/grafana/grafana/issues/2460
)
. SinglestatPanel: Fix to handle series with no data points
-
[
Issue #2461
](
https://github.com/grafana/grafana/issues/2461
)
. LDAP: Fix for ldap users with empty email address
# 2.1.0 (2015-08-04)
...
...
pkg/services/sqlstore/user.go
View file @
90400bf5
...
...
@@ -72,6 +72,10 @@ func CreateUser(cmd *m.CreateUserCommand) error {
return
err
}
if
cmd
.
Email
==
""
{
cmd
.
Email
=
cmd
.
Login
}
// create user
user
:=
m
.
User
{
Email
:
cmd
.
Email
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment