We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad39c50 commit 461ef8bCopy full SHA for 461ef8b
routers/private/serv.go
@@ -63,7 +63,7 @@ func ServNoCommand(ctx *macaron.Context) {
63
}
64
if !user.IsActive {
65
ctx.JSON(http.StatusForbidden, map[string]interface{}{
66
- "err": fmt.Sprintf("Your account is unactived."),
+ "err": "Your account is disabled.",
67
})
68
return
69
routers/repo/http.go
@@ -245,7 +245,7 @@ func HTTP(ctx *context.Context) {
245
246
247
if !authUser.IsActive {
248
- ctx.HandleText(http.StatusForbidden, "Your account is unactived.")
+ ctx.HandleText(http.StatusForbidden, "Your account is disabled.")
249
250
251
0 commit comments