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
d53abb9d
Commit
d53abb9d
authored
Mar 18, 2016
by
Sander van Harmelen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change GroupMember.AccessLevel to be of type AccessLevel
Fixes #36
parent
7125de3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
groups.go
groups.go
+7
-7
No files found.
groups.go
View file @
d53abb9d
...
@@ -195,13 +195,13 @@ func (s *GroupsService) SearchGroup(query string) ([]*Group, *Response, error) {
...
@@ -195,13 +195,13 @@ func (s *GroupsService) SearchGroup(query string) ([]*Group, *Response, error) {
//
//
// GitLab API docs: http://doc.gitlab.com/ce/api/groups.html
// GitLab API docs: http://doc.gitlab.com/ce/api/groups.html
type
GroupMember
struct
{
type
GroupMember
struct
{
ID
int
`json:"id"`
ID
int
`json:"id"`
Username
string
`json:"username"`
Username
string
`json:"username"`
Email
string
`json:"email"`
Email
string
`json:"email"`
Name
string
`json:"name"`
Name
string
`json:"name"`
State
string
`json:"state"`
State
string
`json:"state"`
CreatedAt
time
.
Time
`json:"created_at"`
CreatedAt
time
.
Time
`json:"created_at"`
AccessLevel
int
`json:"access_level"`
AccessLevel
AccessLevel
`json:"access_level"`
}
}
// ListGroupMembers get a list of group members viewable by the authenticated
// ListGroupMembers get a list of group members viewable by the authenticated
...
...
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