dashofcode/tracker_api

View on GitHub
lib/tracker_api/endpoints/labels.rb

Summary

Maintainability
A
1 hr
Test Coverage
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 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