diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-06-09 06:57:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 00:57:38 -0400 |
commit | 27a6e039063c394a1bddeb8897dec2e3742dd13e (patch) | |
tree | 2f43edfc885f5504419d1b599ea42eb021e1ba99 /routers/api/v1/org/team.go | |
parent | cefbf73aea912c510a8dd194532233076b822d37 (diff) | |
download | gitea-27a6e039063c394a1bddeb8897dec2e3742dd13e.tar.gz gitea-27a6e039063c394a1bddeb8897dec2e3742dd13e.zip |
Remove page size limit comment from swagger (#11806)
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'routers/api/v1/org/team.go')
-rw-r--r-- | routers/api/v1/org/team.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/routers/api/v1/org/team.go b/routers/api/v1/org/team.go index 7b44a47870..9ca40a7796 100644 --- a/routers/api/v1/org/team.go +++ b/routers/api/v1/org/team.go @@ -37,7 +37,7 @@ func ListTeams(ctx *context.APIContext) { // type: integer // - name: limit // in: query - // description: page size of results, maximum page size is 50 + // description: page size of results // type: integer // responses: // "200": @@ -77,7 +77,7 @@ func ListUserTeams(ctx *context.APIContext) { // type: integer // - name: limit // in: query - // description: page size of results, maximum page size is 50 + // description: page size of results // type: integer // responses: // "200": @@ -310,7 +310,7 @@ func GetTeamMembers(ctx *context.APIContext) { // type: integer // - name: limit // in: query - // description: page size of results, maximum page size is 50 + // description: page size of results // type: integer // responses: // "200": @@ -472,7 +472,7 @@ func GetTeamRepos(ctx *context.APIContext) { // type: integer // - name: limit // in: query - // description: page size of results, maximum page size is 50 + // description: page size of results // type: integer // responses: // "200": @@ -635,7 +635,7 @@ func SearchTeam(ctx *context.APIContext) { // type: integer // - name: limit // in: query - // description: page size of results, maximum page size is 50 + // description: page size of results // type: integer // responses: // "200": |