Browse Source

Assume Glitch::KeywordMute#destroy! works and error out if it doesn't.

There's nothing useful we can display if the destroy action messes up,
so might as well assert it does and complain loudly if it doesn't.
closed-social-glitch-2
David Yip 6 years ago
parent
commit
d9485e6497
1 changed files with 3 additions and 6 deletions
  1. +3
    -6
      app/controllers/settings/keyword_mutes_controller.rb

+ 3
- 6
app/controllers/settings/keyword_mutes_controller.rb View File

@ -33,12 +33,9 @@ class Settings::KeywordMutesController < ApplicationController
end
def destroy
if @keyword_mute.destroy
redirect_to settings_keyword_mutes_path, notice: I18n.t('generic.changes_saved_msg')
else
# FIXME
redirect_to settings_keyword_mutes_path, notice: "huh that didn't work right"
end
@keyword_mute.destroy!
redirect_to settings_keyword_mutes_path, notice: I18n.t('generic.changes_saved_msg')
end
def destroy_all

Loading…
Cancel
Save