16 lines
310 B
Ruby
16 lines
310 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module ErrorTracking
|
||
|
class IssueDetailsService < ErrorTracking::BaseService
|
||
|
private
|
||
|
|
||
|
def fetch
|
||
|
project_error_tracking_setting.issue_details(issue_id: params[:issue_id])
|
||
|
end
|
||
|
|
||
|
def parse_response(response)
|
||
|
{ issue: response[:issue] }
|
||
|
end
|
||
|
end
|
||
|
end
|