Parcourir la source

just overload to not get it by mistake again ... (#14440)

tags/v1.15.0-dev
6543 il y a 3 ans
Parent
révision
4acb499f30
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5
    0
      modules/context/api.go

+ 5
- 0
modules/context/api.go Voir le fichier

@@ -73,6 +73,11 @@ type APIRedirect struct{}
// swagger:response string
type APIString string

// ServerError responds with error message, status is 500
func (ctx *APIContext) ServerError(title string, err error) {
ctx.Error(http.StatusInternalServerError, title, err)
}

// Error responds with an error message to client with given obj as the message.
// If status is 500, also it prints error to log.
func (ctx *APIContext) Error(status int, title string, obj interface{}) {

Chargement…
Annuler
Enregistrer