diff options
author | ThibG <thib@sitedethib.com> | 2018-08-16 20:02:52 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-08-16 20:02:52 +0200 |
commit | c98681c358c1f32f044992d2fe97f2e7843c83d1 (patch) | |
tree | 32c1fb42f2f1cd87f64bf3efca9af0b9e243ca13 /app | |
parent | d78474264da0bd51e021c5f04311515e10ac828e (diff) |
Do not error out when performing admin actions on no statuses (#8220)
Fixes the other issue with #8168
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/admin/statuses_controller.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/admin/statuses_controller.rb b/app/controllers/admin/statuses_controller.rb index 382bfc4a2..a69f12084 100644 --- a/app/controllers/admin/statuses_controller.rb +++ b/app/controllers/admin/statuses_controller.rb @@ -29,6 +29,10 @@ module Admin 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 private |