module Gitlab::Client::Groups
Defines methods related to groups. @see docs.gitlab.com/ce/api/groups.html
Public Instance Methods
Adds a user to group.
@example
Gitlab.add_group_member(1, 2, 40)
@param [Integer] team_id The group id to add a member to. @param [Integer] user_id The user id of the user to add to the team. @param [Integer] access_level Project access level. @return [Gitlab::ObjectifiedHash] Information about added team member.
# File lib/gitlab/client/groups.rb, line 122 def add_group_member(team_id, user_id, access_level) post("/groups/#{url_encode team_id}/members", body: { user_id: user_id, access_level: access_level }) end
Add LDAP group link
@example
Gitlab.add_ldap_group_links(1, 'all', 50, 'ldap')
@param [Integer] id The ID of a group @param [String] cn The CN of a LDAP group @param [Integer] group_access Minimum access level for members of the LDAP group. @param [String] provider LDAP provider for the LDAP group @return [Gitlab::ObjectifiedHash] Information about added ldap group link
# File lib/gitlab/client/groups.rb, line 258 def add_ldap_group_links(id, commonname, group_access, provider) post("/groups/#{url_encode id}/ldap_group_links", body: { cn: commonname, group_access: group_access, provider: provider }) end
Creates a new group.
@example
Gitlab.create_group('new-group', 'group-path') Gitlab.create_group('gitlab', 'gitlab-path', { description: 'New Gitlab project' })
@param [String] name The name of a group. @param [String] path The path of a group. @return [Gitlab::ObjectifiedHash] Information about created group.
# File lib/gitlab/client/groups.rb, line 44 def create_group(name, path, options = {}) body = { name: name, path: path }.merge(options) post('/groups', body: body) end
Delete's a group.
@example
Gitlab.delete_group(42)
@param [Integer] id The ID of a group @return [Gitlab::ObjectifiedHash] Information about the deleted group.
# File lib/gitlab/client/groups.rb, line 55 def delete_group(id) delete("/groups/#{url_encode id}") end
Delete LDAP group link
@example
Gitlab.delete_ldap_group_links(1, 'all')
@param [Integer] id The ID of a group @param [String] cn The CN of a LDAP group @return [Gitlab::ObjectifiedHash] Empty hash
# File lib/gitlab/client/groups.rb, line 270 def delete_ldap_group_links(id, commonname, provider) delete("/groups/#{url_encode id}/ldap_group_links/#{url_encode provider}/#{url_encode commonname}") end
Updates an existing group.
@example
Gitlab.edit_group(42) Gitlab.edit_group(42, { name: 'Group Name' })
@param [Integer] group The ID. @param [Hash] options A customizable set of options @option options [String] :name The name of the group. @option options [String] :path The path of the group. @option options [String] :description The description of the group. @option options [String] :visibility The visibility level of the group. Can be private, internal, or public @option options [String] :lfs_enabled Enable/disable Large File Storage (LFS) for the projects in this groupr. @option options [String] :request_access_enabled Allow users to request member access. @return [Gitlab::ObjectifiedHash] Information about the edited group.
# File lib/gitlab/client/groups.rb, line 221 def edit_group(id, options = {}) put("/groups/#{url_encode id}", body: options) end
Edit a user of a group.
@example
Gitlab.edit_group_member(1, 2, 40)
@param [Integer] team_id The group id of member to edit. @param [Integer] user_id The user id of the user to edit. @param [Integer] access_level Project access level. @return [Gitlab::ObjectifiedHash] Information about edited team member.
# File lib/gitlab/client/groups.rb, line 135 def edit_group_member(team_id, user_id, access_level) put("/groups/#{url_encode team_id}/members/#{user_id}", body: { access_level: access_level }) end
Gets a single group.
@example
Gitlab.group(42)
@param [Integer] id The ID of a group. @param [Hash] options A customizable set of options. @option options [Boolean] :with_custom_attributes Include custom attributes in response (admins only) @option options [Boolean] :with_projects Include details about group projects (default: true) @return [Gitlab::ObjectifiedHash]
# File lib/gitlab/client/groups.rb, line 31 def group(id, options = {}) get("/groups/#{url_encode id}", query: options) end
Get a list of group members that are billable.
@example
Gitlab.group_billable_members(1) Gitlab.group_billable_members(1, { per_page: 40 })
@param [Integer] id The ID of a group. @param [Hash] options A customizable set of options. @option options [Integer] :page The page number. @option options [Integer] :per_page The number of results per page. @return [Array<Gitlab::ObjectifiedHash>]
# File lib/gitlab/client/groups.rb, line 85 def group_billable_members(id, options = {}) get("/groups/#{url_encode id}/billable_members", query: options) end
Gets a list of issues of a group.
@example
Gitlab.group_issues(5)
@param [Integer, String] group_id The ID or name of a group. @param [Hash] options A customizable set of options. @return [Array<Gitlab::ObjectifiedHash>]
# File lib/gitlab/client/groups.rb, line 233 def group_issues(group, options = {}) get("/groups/#{group}/issues", query: options) end
Get details of a single group member.
@example
Gitlab.group_member(1, 10)
@param [Integer] team_id The ID of the group to find a member in. @param [Integer] user_id The user id of the member to find. @return [Gitlab::ObjectifiedHash] (id, username, name, email, state, access_level …)
# File lib/gitlab/client/groups.rb, line 97 def group_member(team_id, user_id) get("/groups/#{url_encode team_id}/members/#{user_id}") end
Get a list of group members.
@example
Gitlab.group_members(1) Gitlab.group_members(1, { per_page: 40 })
@param [Integer] id The ID of a group. @param [Hash] options A customizable set of options. @option options [Integer] :page The page number. @option options [Integer] :per_page The number of results per page. @return [Array<Gitlab::ObjectifiedHash>]
# File lib/gitlab/client/groups.rb, line 70 def group_members(id, options = {}) get("/groups/#{url_encode id}/members", query: options) end
Gets a list of merge requests of a group.
@example
Gitlab.group_merge_requests(5)
@param [Integer, String] group_id The ID or name of a group. @param [Hash] options A customizable set of options. @return [Array<Gitlab::ObjectifiedHash>]
# File lib/gitlab/client/groups.rb, line 109 def group_merge_requests(group, options = {}) get("/groups/#{group}/merge_requests", query: options) end
Get a list of projects under a group @example
Gitlab.group_projects(1)
@param [Integer] id The ID of a group @return [Array<Gitlab::ObjectifiedHash>] List of projects under a group
# File lib/gitlab/client/groups.rb, line 184 def group_projects(id, options = {}) get("/groups/#{url_encode id}/projects", query: options) end
Search
for groups by name
@example
Gitlab.group_search('gitlab')
@param [String] search A string to search for in group names and paths. @param [Hash] options A customizable set of options. @option options [String] :per_page Number of projects to return per page @option options [String] :page The page to retrieve @return [Array<Gitlab::ObjectifiedHash>]
# File lib/gitlab/client/groups.rb, line 173 def group_search(search, options = {}) options[:search] = search get('/groups', query: options) end
Get a list of subgroups under a group @example
Gitlab.group_subgroups(1)
@param [Integer] id the ID of a group @param [Hash] options A customizable set of options. @option options [String] :skip_groups Skip the group IDs passed. @option options [String] :all_available Show all the groups you have access to (defaults to false for authenticated users). @option options [String] :search Return the list of authorized groups matching the search criteria. @option options [String] :order_by Order groups by name or path. Default is name. @option options [String] :sort Order groups in asc or desc order. Default is asc. @option options [String] :statistics Include group statistics (admins only). @option options [String] :owned Limit to groups owned by the current user. @return [Array<Gitlab::ObjectifiedHash>] List of subgroups under a group
# File lib/gitlab/client/groups.rb, line 202 def group_subgroups(id, options = {}) get("/groups/#{url_encode id}/subgroups", query: options) end
Gets a list of groups.
@example
Gitlab.groups Gitlab.groups({ per_page: 40, page: 2 })
@param [Hash] options A customizable set of options. @option options [Integer] :page The page number. @option options [Integer] :per_page The number of results per page. @return [Array<Gitlab::ObjectifiedHash>]
# File lib/gitlab/client/groups.rb, line 17 def groups(options = {}) get('/groups', query: options) end
Removes user from user group.
@example
Gitlab.remove_group_member(1, 2)
@param [Integer] team_id The group ID. @param [Integer] user_id The ID of a user. @return [Gitlab::ObjectifiedHash] Information about removed team member.
# File lib/gitlab/client/groups.rb, line 147 def remove_group_member(team_id, user_id) delete("/groups/#{url_encode team_id}/members/#{user_id}") end
Sync group with LDAP
@example
Gitlab.sync_ldap_group(1)
@param [Integer] id The ID or name of a group. @return [Array<Gitlab::ObjectifiedHash>]
# File lib/gitlab/client/groups.rb, line 244 def sync_ldap_group(id) post("/groups/#{url_encode id}/ldap_sync") end
Transfers a project to a group
@example
Gitlab.transfer_project_to_group(3, 50)
@param [Integer] id The ID of a group. @param [Integer] project_id The ID of a project.
# File lib/gitlab/client/groups.rb, line 158 def transfer_project_to_group(id, project_id) body = { id: id, project_id: project_id } post("/groups/#{url_encode id}/projects/#{project_id}", body: body) end