fix 401 and 403 texts.

This commit is contained in:
Miroslav Šedivý
2021-03-21 21:32:52 +01:00
parent 0eef9d4d98
commit e4d82673da
2 changed files with 6 additions and 6 deletions

View File

@ -57,11 +57,11 @@ func HttpBadRequest(w http.ResponseWriter, res ...interface{}) {
}
func HttpUnauthorized(w http.ResponseWriter, res ...interface{}) {
defHttpError(w, http.StatusUnauthorized, "Access token does not have the required scope.", res...)
defHttpError(w, http.StatusUnauthorized, "Invalid or missing access token.", res...)
}
func HttpForbidden(w http.ResponseWriter, res ...interface{}) {
defHttpError(w, http.StatusForbidden, "Invalid or missing access token.", res...)
defHttpError(w, http.StatusForbidden, "Access token does not have the required scope.", res...)
}
func HttpNotFound(w http.ResponseWriter, res ...interface{}) {