Merge branch 'forgejo' into forgejo

This commit is contained in:
Fermé le Lundi 2024-11-28 22:53:34 +00:00
commit ac99be3bb7
24 changed files with 704 additions and 3 deletions

View file

@ -99,6 +99,17 @@ type swaggerAPIInvalidTopicsError struct {
// swagger:response empty
type APIEmpty struct{}
type APIUnauthorizedError struct {
APIError
}
// APIUnauthorizedError is a unauthorized error response
// swagger:response unauthorized
type swaggerAPUnauthorizedError struct {
// in:body
Body APIUnauthorizedError `json:"body"`
}
type APIForbiddenError struct {
APIError
}