f26f4a7e01
* Update swagger documentation Add docs for missing endpoints Add documentation for request parameters Make parameter naming consistent Fix response documentation * Restore delete comments
32 lines
1 KiB
Go
32 lines
1 KiB
Go
// 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
|
|
|
|
// Team represents a team in an organization
|
|
type Team struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
// enum: none,read,write,admin,owner
|
|
Permission string `json:"permission"`
|
|
}
|
|
|
|
// CreateTeamOption options for creating a team
|
|
type CreateTeamOption struct {
|
|
// required: true
|
|
Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(30)"`
|
|
Description string `json:"description" binding:"MaxSize(255)"`
|
|
// enum: read,write,admin
|
|
Permission string `json:"permission"`
|
|
}
|
|
|
|
// EditTeamOption options for editing a team
|
|
type EditTeamOption struct {
|
|
// required: true
|
|
Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(30)"`
|
|
Description string `json:"description" binding:"MaxSize(255)"`
|
|
// enum: read,write,admin
|
|
Permission string `json:"permission"`
|
|
}
|