mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	* Add field IsAllRepositories to team
* Add AllRepositories to team UI
* Manage team with access to all repositories
* Add field IsAllRepositories to team API
* put backticks around table/column names
* rename IsAllRepositories to IncludesAllRepositories
* do not reload slice if already loaded
* add repo to teams with access to all repositories when changing repo owner
* improve tests for teams with access to all repositories
* Merge branch 'master'
* Change code for adding all repositories
Signed-off-by: David Svantesson <davidsvantesson@gmail.com>
* fmt after merge
* Change code in API EditTeam similar to EditTeamPost web interface
Signed-off-by: David Svantesson <davidsvantesson@gmail.com>
* Clarify that all repositories will be added
Signed-off-by: David Svantesson <davidsvantesson@gmail.com>
* All repositories option under Permissions headline
* New setting group 'Repository access'
* Move check IncludeAllRepositories to removeRepository.
* Revert "Move check IncludeAllRepositories to removeRepository." and add comment instead.
This reverts commit 753b7d205b.
* Clarify help text what options do.
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2016 The Gogs Authors. All rights reserved.
 | 
						|
// Copyright 2018 The Gitea 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 structs
 | 
						|
 | 
						|
// Team represents a team in an organization
 | 
						|
type Team struct {
 | 
						|
	ID                      int64         `json:"id"`
 | 
						|
	Name                    string        `json:"name"`
 | 
						|
	Description             string        `json:"description"`
 | 
						|
	Organization            *Organization `json:"organization"`
 | 
						|
	IncludesAllRepositories bool          `json:"includes_all_repositories"`
 | 
						|
	// enum: none,read,write,admin,owner
 | 
						|
	Permission string `json:"permission"`
 | 
						|
	// example: ["repo.code","repo.issues","repo.ext_issues","repo.wiki","repo.pulls","repo.releases","repo.ext_wiki"]
 | 
						|
	Units []string `json:"units"`
 | 
						|
}
 | 
						|
 | 
						|
// 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)"`
 | 
						|
	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.ext_wiki"]
 | 
						|
	Units []string `json:"units"`
 | 
						|
}
 | 
						|
 | 
						|
// 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)"`
 | 
						|
	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.ext_wiki"]
 | 
						|
	Units []string `json:"units"`
 | 
						|
}
 |