diff options
author | caicandong <50507092+CaiCandong@users.noreply.github.com> | 2023-07-26 18:22:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 10:22:56 +0000 |
commit | f2cc4daf60c906b2e1b67bac0cbe4fb7a7558bde (patch) | |
tree | 3a0fc87e4122b00df4c09b2bbac04025f1c9f16e /modules/structs | |
parent | a5e09a5595a05098e5f2ce55b5ba78fc7c5cdb77 (diff) | |
download | gitea-f2cc4daf60c906b2e1b67bac0cbe4fb7a7558bde.tar.gz gitea-f2cc4daf60c906b2e1b67bac0cbe4fb7a7558bde.zip |
Doc update swagger doc for POST /orgs/{org}/teams (#26155)
close #26111
Diffstat (limited to 'modules/structs')
-rw-r--r-- | modules/structs/org_team.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/structs/org_team.go b/modules/structs/org_team.go index 95db0debad..78dc4abaef 100644 --- a/modules/structs/org_team.go +++ b/modules/structs/org_team.go @@ -29,10 +29,10 @@ type CreateTeamOption struct { IncludesAllRepositories bool `json:"includes_all_repositories"` // enum: read,write,admin Permission string `json:"permission"` - // example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.projects","repo.ext_wiki"] + // example: ["repo.actions","repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.ext_wiki","repo.pulls","repo.releases","repo.projects","repo.ext_wiki"] // Deprecated: This variable should be replaced by UnitsMap and will be dropped in later versions. Units []string `json:"units"` - // example: {"repo.code":"read","repo.issues":"write","repo.ext_issues":"none","repo.wiki":"admin","repo.pulls":"owner","repo.releases":"none","repo.projects":"none","repo.ext_wiki":"none"} + // example: {"repo.actions","repo.packages","repo.code":"read","repo.issues":"write","repo.ext_issues":"none","repo.wiki":"admin","repo.pulls":"owner","repo.releases":"none","repo.projects":"none","repo.ext_wiki":"none"} UnitsMap map[string]string `json:"units_map"` CanCreateOrgRepo bool `json:"can_create_org_repo"` } |