OpenAPI: Fix alerting DeleteMuteTiming errors (#91109)

The `GenericPublicError` is not what is actually returned by the API. Using `PublicError` describes the API correctly
This commit is contained in:
Julien Duchesne
2024-08-26 10:04:36 -04:00
committed by GitHub
parent 0075abe383
commit 087df1d8e5
8 changed files with 66 additions and 116 deletions
@@ -20,10 +20,3 @@ type ForbiddenError struct {
// in: body
Body errutil.PublicError `json:"body"`
}
// swagger:model
type GenericPublicError struct {
// The response message
// in: body
Body errutil.PublicError `json:"body"`
}