Method: Gitlab::Client::Groups#group_custom_attributes

Defined in:
lib/gitlab/client/groups.rb

#group_custom_attributes(group_id) ⇒ Gitlab::ObjectifiedHash

Gets group custom_attributes.

Examples:

Gitlab.group_custom_attributes(2)

Parameters:

  • group_id (Integer)

    The ID of a group.

Returns:

[View source]

281
282
283
# File 'lib/gitlab/client/groups.rb', line 281

def group_custom_attributes(group_id)
  get("/groups/#{group_id}/custom_attributes")
end