1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-27 23:06:10 +02:00

Fix organization field being null in POST /orgs/{orgid}/teams (#27150)

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`).
This commit is contained in:
Dionysios Kakouris 2023-09-21 10:09:59 +02:00 committed by GitHub
parent 14731a34ff
commit e46274b5b4
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -248,7 +248,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