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
6f374185
Commit
6f374185
authored
Apr 04, 2016
by
Michal Gebauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed: Proper type for ProjectMember.AccessLevel
parent
6bf318c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
projects.go
projects.go
+7
-7
No files found.
projects.go
View file @
6f374185
...
@@ -502,13 +502,13 @@ func (s *ProjectsService) DeleteProject(pid interface{}) (*Response, error) {
...
@@ -502,13 +502,13 @@ func (s *ProjectsService) DeleteProject(pid interface{}) (*Response, error) {
// GitLab API docs:
// GitLab API docs:
// http://doc.gitlab.com/ce/api/projects.html#list-project-team-members
// http://doc.gitlab.com/ce/api/projects.html#list-project-team-members
type
ProjectMember
struct
{
type
ProjectMember
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"`
}
}
// ListProjectMembersOptions represents the available ListProjectMembers()
// ListProjectMembersOptions represents the available ListProjectMembers()
...
...
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