2016-11-07 06:53:13 -07:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2018-11-10 12:45:32 -07:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2016-11-07 06:53:13 -07:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-05-11 04:21:34 -06:00
|
|
|
package structs
|
2016-11-07 06:53:13 -07:00
|
|
|
|
2017-11-13 00:02:25 -07:00
|
|
|
// Team represents a team in an organization
|
2016-11-07 06:53:13 -07:00
|
|
|
type Team struct {
|
2019-01-16 17:39:50 -07:00
|
|
|
ID int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Organization *Organization `json:"organization"`
|
2017-11-13 00:02:25 -07:00
|
|
|
// enum: none,read,write,admin,owner
|
2018-03-05 18:22:16 -07:00
|
|
|
Permission string `json:"permission"`
|
2019-08-26 12:13:10 -06:00
|
|
|
// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.ext_wiki"]
|
2018-11-10 12:45:32 -07:00
|
|
|
Units []string `json:"units"`
|
2016-11-07 06:53:13 -07:00
|
|
|
}
|
|
|
|
|
2017-11-13 00:02:25 -07:00
|
|
|
// CreateTeamOption options for creating a team
|
2016-11-07 06:53:13 -07:00
|
|
|
type CreateTeamOption struct {
|
2017-11-13 00:02:25 -07:00
|
|
|
// required: true
|
2016-11-07 06:53:13 -07:00
|
|
|
Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(30)"`
|
|
|
|
Description string `json:"description" binding:"MaxSize(255)"`
|
2017-11-13 00:02:25 -07:00
|
|
|
// enum: read,write,admin
|
2018-03-05 18:22:16 -07:00
|
|
|
Permission string `json:"permission"`
|
2019-08-26 12:13:10 -06:00
|
|
|
// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.ext_wiki"]
|
2018-11-10 12:45:32 -07:00
|
|
|
Units []string `json:"units"`
|
2016-11-07 06:53:13 -07:00
|
|
|
}
|
2016-12-16 08:26:35 -07:00
|
|
|
|
2017-11-13 00:02:25 -07:00
|
|
|
// EditTeamOption options for editing a team
|
2016-12-16 08:26:35 -07:00
|
|
|
type EditTeamOption struct {
|
2017-11-13 00:02:25 -07:00
|
|
|
// required: true
|
2016-12-16 08:26:35 -07:00
|
|
|
Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(30)"`
|
|
|
|
Description string `json:"description" binding:"MaxSize(255)"`
|
2017-11-13 00:02:25 -07:00
|
|
|
// enum: read,write,admin
|
2018-03-05 18:22:16 -07:00
|
|
|
Permission string `json:"permission"`
|
2019-08-26 12:13:10 -06:00
|
|
|
// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.ext_wiki"]
|
2018-11-10 12:45:32 -07:00
|
|
|
Units []string `json:"units"`
|
2016-12-16 08:26:35 -07:00
|
|
|
}
|