aboutsummaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorGiteabot <teabot@gitea.io>2023-09-21 18:14:59 +0800
committerGitHub <noreply@github.com>2023-09-21 12:14:59 +0200
commitfbe1f3511220f282bb47e5ceb2f5dd98a7623cea (patch)
treeb54d020ac76253083ae82d91ee1a7d6682938ae4 /routers
parent25233a9bdcfd8d74c803be7712bdaed72eb41455 (diff)
downloadgitea-fbe1f3511220f282bb47e5ceb2f5dd98a7623cea.tar.gz
gitea-fbe1f3511220f282bb47e5ceb2f5dd98a7623cea.zip
Fix organization field being null in POST /orgs/{orgid}/teams (#27150) (#27162)
Backport #27150 by @memphis88 Similarly to the fix in https://github.com/go-gitea/gitea/pull/24694, this addresses the team creation not returning the organization information in the response. This fix is connected to the [issue](https://gitea.com/gitea/terraform-provider-gitea/issues/27) discovered in the terraform provider. Moreover, the [documentation](https://docs.gitea.com/api/1.20/#tag/organization/operation/orgCreateTeam) suggests that the response body should include the `organization` field (currently being `null`). Co-authored-by: Dionysios Kakouris <1369451+memphis88@users.noreply.github.com>
Diffstat (limited to 'routers')
-rw-r--r--routers/api/v1/org/team.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/org/team.go b/routers/api/v1/org/team.go
index 0e11acc901..6b0c91ef34 100644
--- a/routers/api/v1/org/team.go
+++ b/routers/api/v1/org/team.go
@@ -241,7 +241,7 @@ func CreateTeam(ctx *context.APIContext) {
return
}
- apiTeam, err := convert.ToTeam(ctx, team)
+ apiTeam, err := convert.ToTeam(ctx, team, true)
if err != nil {
ctx.InternalServerError(err)
return