Method: Gitlab::Client::Projects#project_custom_attributes

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

#project_custom_attributes(project_id) ⇒ Gitlab::ObjectifiedHash

Gets project custom_attributes.

Examples:

Gitlab.project_custom_attributes(2)

Parameters:

  • project_id (Integer)

    The ID of a project.

Returns:

[View source]

654
655
656
# File 'lib/gitlab/client/projects.rb', line 654

def project_custom_attributes(project_id)
  get("/projects/#{project_id}/custom_attributes")
end