Commit 5cf34379 authored by theshank's avatar theshank Committed by Sander van Harmelen

closed #101 - Add shared_with_groups field to Project struct (#103)

parent 507dedeb
......@@ -70,6 +70,11 @@ type Project struct {
OnlyAllowMergeIfBuildSucceeds bool `json:"only_allow_merge_if_build_succeeds"`
LFSEnabled bool `json:"lfs_enabled"`
RequestAccessEnabled bool `json:"request_access_enabled"`
SharedWithGroups []struct {
GroupID int `json:"group_id"`
GroupName string `json:"group_name"`
GroupAccessLevel int `json:"group_access_level"`
} `json:"shared_with_groups"`
}
// Repository represents a repository.
......
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