Gab-Social/app/services/report_service.rb
2020-11-15 12:48:32 -06:00

28 lines
592 B
Ruby

# frozen_string_literal: true
class ReportService < BaseService
def call(source_account, target_account, options = {})
@source_account = source_account
@target_account = target_account
@status_ids = options.delete(:status_ids) || []
@comment = options.delete(:comment) || ''
@options = options
create_report!
@report
end
private
def create_report!
@report = @source_account.reports.create!(
target_account: @target_account,
status_ids: @status_ids,
comment: @comment,
uri: @options[:uri]
)
end
end