Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
go-gitlab
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
go-gitlab
Commits
fb2cb62b
Commit
fb2cb62b
authored
May 16, 2017
by
Andrea Funtò
Committed by
Sander van Harmelen
May 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added RequestAccessEnabled, AvatarURL and WebURL to Group (#174)
parent
760a3395
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
groups.go
groups.go
+11
-8
No files found.
groups.go
View file @
fb2cb62b
...
...
@@ -36,14 +36,17 @@ type GroupsService struct {
// GitLab API docs:
// https://gitlab.com/gitlab-org/gitlab-ce/blob/8-16-stable/doc/api/groups.md
type
Group
struct
{
ID
int
`json:"id"`
Name
string
`json:"name"`
Path
string
`json:"path"`
Description
string
`json:"description"`
LFSEnabled
bool
`json:"lfs_enabled"`
Projects
[]
*
Project
`json:"projects"`
Statistics
*
StorageStatistics
`json:"statistics"`
VisibilityLevel
VisibilityLevelValue
`json:"visibility_level"`
ID
int
`json:"id"`
Name
string
`json:"name"`
Path
string
`json:"path"`
Description
string
`json:"description"`
VisibilityLevel
VisibilityLevelValue
`json:"visibility_level"`
AvatarURL
string
`json:"avatar_url"`
WebURL
string
`json:"web_url"`
RequestAccessEnabled
bool
`json:"request_access_enabled"`
LFSEnabled
bool
`json:"lfs_enabled"`
Projects
[]
*
Project
`json:"projects"`
Statistics
*
StorageStatistics
`json:"statistics"`
}
// ListGroupsOptions represents the available ListGroups() options.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment