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
f5db9950
Commit
f5db9950
authored
Nov 16, 2015
by
utkarshcmu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed gofmt tests
parent
e5931e26
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
pkg/api/admin_users.go
+7
-7
pkg/models/user.go
+2
-2
No files found.
pkg/api/admin_users.go
View file @
f5db9950
...
...
@@ -37,14 +37,14 @@ func AdminCreateUser(c *middleware.Context, form dtos.AdminCreateUserForm) {
metrics
.
M_Api_Admin_User_Create
.
Inc
(
1
)
user
:=
cmd
.
Result
user
:=
cmd
.
Result
result
:=
m
.
UserIdDTO
{
Message
:
"User created"
,
Id
:
user
.
Id
,
}
result
:=
m
.
UserIdDTO
{
Message
:
"User created"
,
Id
:
user
.
Id
,
}
c
.
JSON
(
200
,
result
)
c
.
JSON
(
200
,
result
)
}
func
AdminUpdateUserPassword
(
c
*
middleware
.
Context
,
form
dtos
.
AdminUpdateUserPasswordForm
)
{
...
...
@@ -103,5 +103,5 @@ func AdminDeleteUser(c *middleware.Context) {
return
}
c
.
JsonOK
(
"User deleted"
)
c
.
JsonOK
(
"User deleted"
)
}
pkg/models/user.go
View file @
f5db9950
...
...
@@ -159,6 +159,6 @@ type UserSearchHitDTO struct {
}
type
UserIdDTO
struct
{
Id
int64
`json:"id"`
Message
string
`json:"message"`
Id
int64
`json:"id"`
Message
string
`json:"message"`
}
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