diff options
author | 6543 <6543@obermui.de> | 2021-08-11 17:08:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 18:08:52 +0300 |
commit | f1a810e0901b80eb6bc21103434fc0737af17eaa (patch) | |
tree | 9656d780cf19fd745f41eef0012701458aa271c4 /routers/api/v1/org/team.go | |
parent | 2d25b7d44bedf8f17cc2b49f39d1cee662b199a5 (diff) | |
download | gitea-f1a810e0901b80eb6bc21103434fc0737af17eaa.tar.gz gitea-f1a810e0901b80eb6bc21103434fc0737af17eaa.zip |
Related refactors to ctx.FormX functions (#16567)
* use FormTrim if posible
* speedup goGet
* only convert if nessesary
Diffstat (limited to 'routers/api/v1/org/team.go')
-rw-r--r-- | routers/api/v1/org/team.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/routers/api/v1/org/team.go b/routers/api/v1/org/team.go index 7802bede1b..7998bb249f 100644 --- a/routers/api/v1/org/team.go +++ b/routers/api/v1/org/team.go @@ -8,7 +8,6 @@ package org import ( "fmt" "net/http" - "strings" "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/context" @@ -658,7 +657,7 @@ func SearchTeam(ctx *context.APIContext) { opts := &models.SearchTeamOptions{ UserID: ctx.User.ID, - Keyword: strings.TrimSpace(ctx.FormString("q")), + Keyword: ctx.FormTrim("q"), OrgID: ctx.Org.Organization.ID, IncludeDesc: ctx.FormString("include_desc") == "" || ctx.FormBool("include_desc"), ListOptions: listOptions, |