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
0d2be0a7
Commit
0d2be0a7
authored
Jul 03, 2019
by
Anthony Templeton
Committed by
Torkel Ödegaard
Jul 03, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Logging: Login and Logout logging actions (#17760) (#17883)
parent
1c291e26
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pkg/api/login.go
+2
-2
No files found.
pkg/api/login.go
View file @
0d2be0a7
...
...
@@ -126,7 +126,6 @@ func (hs *HTTPServer) LoginPost(c *m.ReqContext, cmd dtos.LoginCommand) Response
}
metrics
.
M_Api_Login_Post
.
Inc
()
return
JSON
(
200
,
result
)
}
...
...
@@ -139,7 +138,7 @@ func (hs *HTTPServer) loginUserWithUser(user *m.User, c *m.ReqContext) {
if
err
!=
nil
{
hs
.
log
.
Error
(
"failed to create auth token"
,
"error"
,
err
)
}
hs
.
log
.
Info
(
"Successful Login"
,
"User"
,
user
.
Email
)
middleware
.
WriteSessionCookie
(
c
,
userToken
.
UnhashedToken
,
hs
.
Cfg
.
LoginMaxLifetimeDays
)
}
...
...
@@ -153,6 +152,7 @@ func (hs *HTTPServer) Logout(c *m.ReqContext) {
if
setting
.
SignoutRedirectUrl
!=
""
{
c
.
Redirect
(
setting
.
SignoutRedirectUrl
)
}
else
{
hs
.
log
.
Info
(
"Successful Logout"
,
"User"
,
c
.
Email
)
c
.
Redirect
(
setting
.
AppSubUrl
+
"/login"
)
}
}
...
...
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