forgejo-sdk/gitea/org_team.go

33 lines
1 KiB
Go
Raw Normal View History

2016-03-21 16:45:51 +00:00
// Copyright 2016 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package gitea
2016-03-21 16:45:51 +00:00
2017-11-12 09:10:33 +00:00
// Team represents a team in an organization
2016-03-21 16:45:51 +00:00
type Team struct {
ID int64 `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
2017-11-12 09:10:33 +00:00
// enum: none,read,write,admin,owner
2016-03-21 16:45:51 +00:00
Permission string `json:"permission"`
}
2017-11-12 09:10:33 +00:00
// CreateTeamOption options for creating a team
2016-03-21 16:45:51 +00:00
type CreateTeamOption struct {
2017-11-12 09:10:33 +00:00
// required: true
2016-03-21 16:45:51 +00:00
Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(30)"`
Description string `json:"description" binding:"MaxSize(255)"`
2017-11-12 09:10:33 +00:00
// enum: read,write,admin
2016-03-21 16:45:51 +00:00
Permission string `json:"permission"`
}
2016-12-08 02:20:10 +00:00
2017-11-12 09:10:33 +00:00
// EditTeamOption options for editing a team
2016-12-08 02:20:10 +00:00
type EditTeamOption struct {
2017-11-12 09:10:33 +00:00
// required: true
2016-12-08 02:20:10 +00:00
Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(30)"`
Description string `json:"description" binding:"MaxSize(255)"`
2017-11-12 09:10:33 +00:00
// enum: read,write,admin
2016-12-08 02:20:10 +00:00
Permission string `json:"permission"`
}