Class: TrackerApi::Endpoints::Labels
- Defined in:
- lib/tracker_api/endpoints/labels.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
Returns the value of attribute client.
Instance Method Summary collapse
- #add(project_id, params = {}) ⇒ Object
- #get(project_id, params = {}) ⇒ Object
-
#initialize(client) ⇒ Labels
constructor
A new instance of Labels.
Constructor Details
#initialize(client) ⇒ Labels
Returns a new instance of Labels.
6 7 8 |
# File 'lib/tracker_api/endpoints/labels.rb', line 6 def initialize(client) @client = client end |
Instance Attribute Details
#client ⇒ Object
Returns the value of attribute client.
4 5 6 |
# File 'lib/tracker_api/endpoints/labels.rb', line 4 def client @client end |
Instance Method Details
#add(project_id, params = {}) ⇒ Object
19 20 21 22 23 |
# File 'lib/tracker_api/endpoints/labels.rb', line 19 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 |
#get(project_id, params = {}) ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/tracker_api/endpoints/labels.rb', line 10 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 |