Browse Source

Add apply-to-mentions option to keyword mute UI. #454.

closed-social-glitch-2
David Yip 6 years ago
parent
commit
97d2df77aa
No known key found for this signature in database GPG Key ID: 7DA0036508FCC0CC
5 changed files with 9 additions and 1 deletions
  1. +1
    -1
      app/controllers/settings/keyword_mutes_controller.rb
  2. +3
    -0
      app/views/settings/keyword_mutes/_fields.html.haml
  3. +3
    -0
      app/views/settings/keyword_mutes/_keyword_mute.html.haml
  4. +1
    -0
      app/views/settings/keyword_mutes/index.html.haml
  5. +1
    -0
      config/locales/en.yml

+ 1
- 1
app/controllers/settings/keyword_mutes_controller.rb View File

@ -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

+ 3
- 0
app/views/settings/keyword_mutes/_fields.html.haml View File

@ -2,6 +2,9 @@
= f.input :keyword
= f.check_box :whole_word
= f.label :whole_word, t('keyword_mutes.match_whole_word')
%br
= f.check_box :apply_to_mentions
= f.label :apply_to_mentions, t('keyword_mutes.apply_to_mentions')
.actions
- if f.object.persisted?

+ 3
- 0
app/views/settings/keyword_mutes/_keyword_mute.html.haml View File

@ -4,6 +4,9 @@
%td
- if keyword_mute.whole_word
%i.fa.fa-check
%td
- if keyword_mute.apply_to_mentions
%i.fa.fa-check
%td
= table_link_to 'edit', t('keyword_mutes.edit'), edit_settings_keyword_mute_path(keyword_mute)
%td

+ 1
- 0
app/views/settings/keyword_mutes/index.html.haml View File

@ -7,6 +7,7 @@
%tr
%th= t('keyword_mutes.keyword')
%th= t('keyword_mutes.match_whole_word')
%th= t('keyword_mutes.apply_to_mentions')
%th
%th
%tbody

+ 1
- 0
config/locales/en.yml View File

@ -526,6 +526,7 @@ en:
title: Invite people
keyword_mutes:
add_keyword: Add keyword
apply_to_mentions: Apply to mentions
edit: Edit
edit_keyword: Edit keyword
keyword: Keyword

Loading…
Cancel
Save