Compare commits

...
This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.

1 Commits

Author SHA1 Message Date
David Yip 307a8dfad0
When the mute list changes, queue up a home feed regeneration. #199. 2017-11-19 05:49:39 -06:00
1 changed files with 9 additions and 0 deletions

View File

@ -1,10 +1,13 @@
# frozen_string_literal: true
class Settings::KeywordMutesController < ApplicationController
include UserTrackingConcern
layout 'admin'
before_action :authenticate_user!
before_action :load_keyword_mute, only: [:edit, :update, :destroy]
after_action :bust_feed_caches, only: [:create, :update, :destroy]
def index
@keyword_mutes = paginated_keyword_mutes_for_account
@ -54,6 +57,12 @@ class Settings::KeywordMutesController < ApplicationController
@keyword_mute = keyword_mutes_for_account.find(params[:id])
end
def bust_feed_caches
# FIXME: this key is really meant to be an implementation detail
Redis.current.del("account:#{current_user.account_id}:regeneration")
regenerate_feed!
end
def keyword_mute_params
params.require(:keyword_mute).permit(:keyword, :whole_word)
end