Improved error logging

This commit is contained in:
2018-07-07 12:42:00 +09:00
parent bf544836fa
commit e46c9b1586
41 changed files with 69 additions and 65 deletions

View File

@ -15,7 +15,7 @@ func Edit(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil || user.Role != "admin" {
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit this user", nil)
return ctx.Error(http.StatusUnauthorized, "Not logged in or not auhorized to edit this user")
}
viewUser, err := arn.GetUserByNick(nick)

View File

@ -13,11 +13,11 @@ func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil {
return ctx.Error(http.StatusBadRequest, "Not logged in", nil)
return ctx.Error(http.StatusBadRequest, "Not logged in")
}
if user.Nick == "" {
return ctx.Error(http.StatusInternalServerError, "User did not set a nickname", nil)
return ctx.Error(http.StatusInternalServerError, "User did not set a nickname")
}
return profile.Profile(ctx, user)