Skip to content

Commit

Permalink
Do not error out when performing admin actions on no statuses (#10094)
Browse files Browse the repository at this point in the history
Same as #8220 but for reports
  • Loading branch information
ClearlyClaire authored and Gargron committed Feb 21, 2019
1 parent 4340d33 commit 738c034
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/controllers/admin/reported_statuses_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ def create
@form = Form::StatusBatch.new(form_status_batch_params.merge(current_account: current_account, action: action_from_button))
flash[:alert] = I18n.t('admin.statuses.failed_to_execute') unless @form.save

redirect_to admin_report_path(@report)
rescue ActionController::ParameterMissing
flash[:alert] = I18n.t('admin.statuses.no_status_selected')

redirect_to admin_report_path(@report)
end

Expand Down

0 comments on commit 738c034

Please sign in to comment.