Sha256: f31f0ea5f2a9c531aa7b760228bed7d00f95ca0117398d6eef5ccc2197dbac54
Contents?: true
Size: 707 Bytes
Versions: 1
Compression:
Stored size: 707 Bytes
Contents
module TrackerApi module Endpoints class Labels attr_accessor :client def initialize(client) @client = client end def get(project_id, params={}) data = client.paginate("/projects/#{project_id}/labels", params: params) raise TrackerApi::Errors::UnexpectedData, 'Array of labels expected' unless data.is_a? Array data.map do |label| Resources::Label.new({ project_id: project_id }.merge(label)) end end def add(project_id, params={}) data = client.post("/projects/#{project_id}/labels", params: params).body Resources::Label.new({ project_id: project_id }.merge(data)) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tracker_api-0.2.10 | lib/tracker_api/endpoints/labels.rb |