diff options
author | David Yip <yipdw@member.fsf.org> | 2018-06-12 19:28:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-12 19:28:08 -0500 |
commit | f1bfcb50f0baeecf445bfdcf2852b3826d0d3cc0 (patch) | |
tree | 83c564879534ea35f468ce319342e011773f24aa /app/controllers | |
parent | f6bb50b6ece555af138df164680189b1ec57da4b (diff) | |
parent | 5cff053944b4327477ca45882c9dd3b1a7a559e8 (diff) |
Merge pull request #531 from glitch-soc/454-allow-keyword-mutes-to-skip-mentions
Allow keyword mutes to skip mentions (#454)
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/settings/keyword_mutes_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/settings/keyword_mutes_controller.rb b/app/controllers/settings/keyword_mutes_controller.rb index 699b8a3ef..cf364a903 100644 --- a/app/controllers/settings/keyword_mutes_controller.rb +++ b/app/controllers/settings/keyword_mutes_controller.rb @@ -52,7 +52,7 @@ class Settings::KeywordMutesController < Settings::BaseController end def keyword_mute_params - params.require(:keyword_mute).permit(:keyword, :whole_word) + params.require(:keyword_mute).permit(:keyword, :whole_word, :apply_to_mentions) end def paginated_keyword_mutes_for_account |