Browse Source

Use current_account from ApplicationController.

This avoids copy-pasting definitions of set_account.
closed-social-glitch-2
David Yip 6 years ago
parent
commit
4c84513e04
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      app/controllers/settings/keyword_mutes_controller.rb

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

@ -4,7 +4,6 @@ class Settings::KeywordMutesController < ApplicationController
layout 'admin'
before_action :authenticate_user!
before_action :set_account
before_action :load_keyword_mute, only: [:edit, :update, :destroy]
def index
@ -50,12 +49,8 @@ class Settings::KeywordMutesController < ApplicationController
private
def set_account
@account = current_user.account
end
def keyword_mutes_for_account
Glitch::KeywordMute.where(account: @account)
Glitch::KeywordMute.where(account: current_account)
end
def load_keyword_mute

Loading…
Cancel
Save