Browse Source

Override Action View name inference in settings/keyword_mutes.

Glitch::KeywordMute's name is inferred as glitch_keyword_mutes, and in
templates this turns into e.g. settings/glitch/keyword_mutes.  Going
along with this convention means a lot of file movement, though, and for
a UI that's as temporary and awkward as this one I think it's less
effort to slap a bunch of as: options everywhere.

We'll do the Right Thing when we build out the API and frontend UI.
closed-social-glitch-2
David Yip 7 years ago
parent
commit
9226257a1b
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      app/views/settings/keyword_mutes/edit.html.haml
  2. +1
    -1
      app/views/settings/keyword_mutes/index.html.haml
  3. +1
    -1
      app/views/settings/keyword_mutes/new.html.haml

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

@ -1,6 +1,6 @@
- content_for :page_title do - content_for :page_title do
= t('keyword_mutes.edit_keyword') = t('keyword_mutes.edit_keyword')
= simple_form_for @keyword_mute, url: settings_keyword_mute_path(@keyword_mute) do |f|
= simple_form_for @keyword_mute, url: settings_keyword_mute_path(@keyword_mute), as: :keyword_mute do |f|
= render 'shared/error_messages', object: @keyword_mute = render 'shared/error_messages', object: @keyword_mute
= render 'fields', f: f = render 'fields', f: f

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

@ -10,7 +10,7 @@
%th %th
%th %th
%tbody %tbody
= render @keyword_mutes
= render partial: 'keyword_mute', collection: @keyword_mutes, as: :keyword_mute
= paginate @keyword_mutes = paginate @keyword_mutes
.simple_form .simple_form

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

@ -1,6 +1,6 @@
- content_for :page_title do - content_for :page_title do
= t('keyword_mutes.add_keyword') = t('keyword_mutes.add_keyword')
= simple_form_for @keyword_mute, url: settings_keyword_mutes_path do |f|
= simple_form_for @keyword_mute, url: settings_keyword_mutes_path, as: :keyword_mute do |f|
= render 'shared/error_messages', object: @keyword_mute = render 'shared/error_messages', object: @keyword_mute
= render 'fields', f: f = render 'fields', f: f

Loading…
Cancel
Save