diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-03-02 18:57:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 18:57:08 +0100 |
commit | 02b8d63fcef2d30e2514111ec89308a9435dd2ed (patch) | |
tree | 4cf66422b9aa934e810d320b61ba8d545975c694 /app/controllers/api | |
parent | 462a6f7d721fa0717c5627fd0f0d73ee9ec5a675 (diff) |
Fix report category not being saved in REST API (#17682)
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/v1/reports_controller.rb | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/app/controllers/api/v1/reports_controller.rb b/app/controllers/api/v1/reports_controller.rb index 052d70cc8..8ff6c8fe5 100644 --- a/app/controllers/api/v1/reports_controller.rb +++ b/app/controllers/api/v1/reports_controller.rb @@ -10,9 +10,7 @@ class Api::V1::ReportsController < Api::BaseController @report = ReportService.new.call( current_account, reported_account, - status_ids: reported_status_ids, - comment: report_params[:comment], - forward: report_params[:forward] + report_params ) render json: @report, serializer: REST::ReportSerializer @@ -20,14 +18,6 @@ class Api::V1::ReportsController < Api::BaseController private - def reported_status_ids - reported_account.statuses.with_discarded.find(status_ids).pluck(:id) - end - - def status_ids - Array(report_params[:status_ids]) - end - def reported_account Account.find(report_params[:account_id]) end |