Skip to content
Snippets Groups Projects
Commit c98681c3 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Do not error out when performing admin actions on no statuses (#8220)

Fixes the other issue with #8168
parent d7847426
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,10 @@ module Admin
@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_account_statuses_path(@account.id, current_params)
rescue ActionController::ParameterMissing
flash[:alert] = I18n.t('admin.statuses.no_status_selected')
redirect_to admin_account_statuses_path(@account.id, current_params)
end
......
......@@ -401,6 +401,7 @@ en:
media:
title: Media
no_media: No media
no_status_selected: No statuses were changed as none were selected
title: Account statuses
with_media: With media
subscriptions:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment