Commit 6f374185 authored by Michal Gebauer's avatar Michal Gebauer

Fixed: Proper type for ProjectMember.AccessLevel

parent 6bf318c3
...@@ -508,7 +508,7 @@ type ProjectMember struct { ...@@ -508,7 +508,7 @@ type ProjectMember struct {
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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment