summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/convert/convert.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2018-11-11 03:45:32 +0800
committertechknowlogick <hello@techknowlogick.com>2018-11-10 14:45:32 -0500
commitb3000ae623c30a58d3eb25c9fd7104db274381b7 (patch)
tree9905bc54b6d151baf2de69b4a9b3d41935f1e8be /routers/api/v1/convert/convert.go
parentd487a76ee2843cc94ec6185dfdb676b4482dc8d8 (diff)
downloadgitea-b3000ae623c30a58d3eb25c9fd7104db274381b7.tar.gz
gitea-b3000ae623c30a58d3eb25c9fd7104db274381b7.zip
Fix create team, update team missing units (#5188)
Diffstat (limited to 'routers/api/v1/convert/convert.go')
-rw-r--r--routers/api/v1/convert/convert.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/api/v1/convert/convert.go b/routers/api/v1/convert/convert.go
index 1bfeae34bf..35416dea51 100644
--- a/routers/api/v1/convert/convert.go
+++ b/routers/api/v1/convert/convert.go
@@ -198,5 +198,6 @@ func ToTeam(team *models.Team) *api.Team {
Name: team.Name,
Description: team.Description,
Permission: team.Authorize.String(),
+ Units: team.GetUnitNames(),
}
}