Commit 84efc1e1 authored by Sander van Harmelen's avatar Sander van Harmelen

Merge pull request #9 from ThomasBS/add-projects-to-groups

Add projects to group
parents 32d53f1b 3c1bf561
......@@ -33,10 +33,11 @@ type GroupsService struct {
//
// GitLab API docs: http://doc.gitlab.com/ce/api/groups.html
type Group struct {
ID int `json:"id"`
Name string `json:"name"`
Path string `json:"path"`
Description string `json:"description"`
ID int `json:"id"`
Name string `json:"name"`
Path string `json:"path"`
Description string `json:"description"`
Projects *[]Project `json:"projects,omitempty"`
}
// ListGroups gets a list of groups. (As user: my groups, as admin: all groups)
......
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