From 9c4601bdf8369ed72944085e3952111cf4aeea11 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Fri, 9 Apr 2021 09:40:34 +0200 Subject: Code Formats, Nits & Unused Func/Var deletions (#15286) * _ to unused func options * rm useless brakets * rm trifial non used models functions * rm dead code * rm dead global vars * fix routers/api/v1/repo/issue.go * dont overload import module --- routers/api/v1/org/team.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'routers/api/v1/org') diff --git a/routers/api/v1/org/team.go b/routers/api/v1/org/team.go index 99bbd9eefe..bc86bbcbe3 100644 --- a/routers/api/v1/org/team.go +++ b/routers/api/v1/org/team.go @@ -660,7 +660,7 @@ func SearchTeam(ctx *context.APIContext) { UserID: ctx.User.ID, Keyword: strings.TrimSpace(ctx.Query("q")), OrgID: ctx.Org.Organization.ID, - IncludeDesc: (ctx.Query("include_desc") == "" || ctx.QueryBool("include_desc")), + IncludeDesc: ctx.Query("include_desc") == "" || ctx.QueryBool("include_desc"), ListOptions: listOptions, } -- cgit v1.2.3