Sha256: 391a9b8f60ee4fbd9c08091cee82c6780381df3cc068af534471b07330df48bc
Contents?: true
Size: 1.91 KB
Versions: 1
Compression:
Stored size: 1.91 KB
Contents
class Gitlab::Client # Defines methods related to labels. # @see https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/labels.md module Labels # Gets a list of project's labels. # # @example # Gitlab.labels(5) # # @param [Integer] project The ID of a project. # @return [Array<Gitlab::ObjectifiedHash>] def labels(project) get("/projects/#{project}/labels") end # Creates a new label. # # @example # Gitlab.create_label(42, "Backlog", '#DD10AA') # # @param [Integer] project The ID of a project. # @option [String] name The name of a label. # @option [String] color The color of a label. # @return [Gitlab::ObjectifiedHash] Information about created label. def create_label(project, name, color) post("/projects/#{project}/labels", body: { name: name, color: color }) end # Updates a label. # # @example # Gitlab.edit_label(42, "Backlog", { new_name: 'TODO' }) # Gitlab.edit_label(42, "Backlog", { new_name: 'TODO', color: '#DD10AA' }) # # @param [Integer] project The ID of a project. # @param [String] name The name of a label. # @param [Hash] options A customizable set of options. # @option options [String] :new_name The new name of a label. # @option options [String] :color The color of a label. # @return [Gitlab::ObjectifiedHash] Information about updated label. def edit_label(project, name, options={}) put("/projects/#{project}/labels", body: options.merge(name: name)) end # Deletes a label. # # @example # Gitlab.delete_label(2, 'Backlog') # # @param [Integer] project The ID of a project. # @param [String] name The name of a label. # @return [Gitlab::ObjectifiedHash] Information about deleted label. def delete_label(project, name) delete("/projects/#{project}/labels", body: { name: name }) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gitlab-3.7.0 | lib/gitlab/client/labels.rb |