1
0

Fix swagger docs for create requests

This commit is contained in:
kolaente
2021-05-26 21:56:31 +02:00
parent 8e65ffb99b
commit e23014dbe4
21 changed files with 80 additions and 80 deletions

View File

@ -247,7 +247,7 @@ func (t *Team) ReadAll(s *xorm.Session, a web.Auth, search string, page int, per
// @Produce json
// @Security JWTKeyAuth
// @Param team body models.Team true "The team you want to create."
// @Success 200 {object} models.Team "The created team."
// @Success 201 {object} models.Team "The created team."
// @Failure 400 {object} web.HTTPError "Invalid team object provided."
// @Failure 500 {object} models.Message "Internal error"
// @Router /teams [put]