lanej/zendesk2

View on GitHub
lib/zendesk2/get_ticket_comments.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
class Zendesk2::GetTicketComments
  include Zendesk2::Request

  request_method :get
  request_path { |r| "/tickets/#{r.ticket_id}/comments.json" }

  def ticket_id
    params.fetch('ticket_id').to_i
  end

  def mock(_params = {})
    comments = data[:ticket_comments].values.select { |comment| comment['ticket_id'] == ticket_id }

    page(comments, root: 'comments')
  end
end