2016-11-07 19:23:13 +05:30
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2019-05-11 15:51:34 +05:30
|
|
|
package structs
|
2016-11-07 19:23:13 +05:30
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// Organization represents an organization
|
2016-11-07 19:23:13 +05:30
|
|
|
type Organization struct {
|
2019-09-24 01:38:03 +05:30
|
|
|
ID int64 `json:"id"`
|
|
|
|
UserName string `json:"username"`
|
|
|
|
FullName string `json:"full_name"`
|
|
|
|
AvatarURL string `json:"avatar_url"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Website string `json:"website"`
|
|
|
|
Location string `json:"location"`
|
|
|
|
Visibility string `json:"visibility"`
|
|
|
|
RepoAdminChangeTeamAccess bool `json:"repo_admin_change_team_access"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// CreateOrgOption options for creating an organization
|
2016-11-07 19:23:13 +05:30
|
|
|
type CreateOrgOption struct {
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
2019-05-30 23:27:55 +05:30
|
|
|
UserName string `json:"username" binding:"Required"`
|
|
|
|
FullName string `json:"full_name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Website string `json:"website"`
|
|
|
|
Location string `json:"location"`
|
|
|
|
// possible values are `public` (default), `limited` or `private`
|
|
|
|
// enum: public,limited,private
|
2019-09-24 01:38:03 +05:30
|
|
|
Visibility string `json:"visibility" binding:"In(,public,limited,private)"`
|
|
|
|
RepoAdminChangeTeamAccess bool `json:"repo_admin_change_team_access"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// EditOrgOption options for editing an organization
|
2016-11-07 19:23:13 +05:30
|
|
|
type EditOrgOption struct {
|
|
|
|
FullName string `json:"full_name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Website string `json:"website"`
|
|
|
|
Location string `json:"location"`
|
2019-05-30 23:27:55 +05:30
|
|
|
// possible values are `public`, `limited` or `private`
|
|
|
|
// enum: public,limited,private
|
2019-09-24 01:38:03 +05:30
|
|
|
Visibility string `json:"visibility" binding:"In(,public,limited,private)"`
|
|
|
|
RepoAdminChangeTeamAccess bool `json:"repo_admin_change_team_access"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|