2016-11-07 19:23:13 +05:30
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2018-11-11 01:15:32 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2016-11-07 19:23:13 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-05-11 15:51:34 +05:30
|
|
|
package structs
|
2016-11-07 19:23:13 +05:30
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// Team represents a team in an organization
|
2016-11-07 19:23:13 +05:30
|
|
|
type Team struct {
|
2019-11-06 15:07:14 +05:30
|
|
|
ID int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Organization *Organization `json:"organization"`
|
|
|
|
IncludesAllRepositories bool `json:"includes_all_repositories"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// enum: none,read,write,admin,owner
|
2018-03-06 06:52:16 +05:30
|
|
|
Permission string `json:"permission"`
|
2021-03-04 04:14:30 +05:30
|
|
|
// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.projects","repo.ext_wiki"]
|
2019-11-20 16:57:49 +05:30
|
|
|
Units []string `json:"units"`
|
|
|
|
CanCreateOrgRepo bool `json:"can_create_org_repo"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// CreateTeamOption options for creating a team
|
2016-11-07 19:23:13 +05:30
|
|
|
type CreateTeamOption struct {
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
2019-11-06 15:07:14 +05:30
|
|
|
Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(30)"`
|
|
|
|
Description string `json:"description" binding:"MaxSize(255)"`
|
|
|
|
IncludesAllRepositories bool `json:"includes_all_repositories"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// enum: read,write,admin
|
2018-03-06 06:52:16 +05:30
|
|
|
Permission string `json:"permission"`
|
2021-03-04 04:14:30 +05:30
|
|
|
// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.projects","repo.ext_wiki"]
|
2019-11-20 16:57:49 +05:30
|
|
|
Units []string `json:"units"`
|
|
|
|
CanCreateOrgRepo bool `json:"can_create_org_repo"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
2016-12-16 20:56:35 +05:30
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// EditTeamOption options for editing a team
|
2016-12-16 20:56:35 +05:30
|
|
|
type EditTeamOption struct {
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
2020-01-09 18:45:14 +05:30
|
|
|
Name string `json:"name" binding:"AlphaDashDot;MaxSize(30)"`
|
|
|
|
Description *string `json:"description" binding:"MaxSize(255)"`
|
|
|
|
IncludesAllRepositories *bool `json:"includes_all_repositories"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// enum: read,write,admin
|
2018-03-06 06:52:16 +05:30
|
|
|
Permission string `json:"permission"`
|
2021-03-04 04:14:30 +05:30
|
|
|
// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.projects","repo.ext_wiki"]
|
2019-11-20 16:57:49 +05:30
|
|
|
Units []string `json:"units"`
|
2020-01-09 18:45:14 +05:30
|
|
|
CanCreateOrgRepo *bool `json:"can_create_org_repo"`
|
2016-12-16 20:56:35 +05:30
|
|
|
}
|