Commit f5db9950 by utkarshcmu

fixed gofmt tests

parent e5931e26
......@@ -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")
}
......@@ -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"`
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment