| 1234567891011121314151617181920 |
- package v1
- import (
- "gogs.io/gogs/internal/context"
- "gogs.io/gogs/internal/route/api/v1/types"
- )
- func listTeams(c *context.APIContext) {
- org := c.Org.Organization
- if err := org.GetTeams(); err != nil {
- c.Error(err, "get teams")
- return
- }
- apiTeams := make([]*types.OrganizationTeam, len(org.Teams))
- for i := range org.Teams {
- apiTeams[i] = toOrganizationTeam(org.Teams[i])
- }
- c.JSONSuccess(apiTeams)
- }
|