Retrospring/app/controllers/settings/mutes_controller.rb

22 lines
538 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Settings::MutesController < ApplicationController
before_action :authenticate_user!
def index
@rules = MuteRule.where(user: current_user)
end
2022-11-18 12:47:37 -08:00
def create
rule = MuteRule.create!(user: current_user, muted_phrase: params[:muted_phrase])
respond_to do |format|
format.turbo_stream do
render turbo_stream: turbo_stream.append("rules", partial: "settings/mutes/rule", locals: { rule: })
end
format.html { redirect_to settings_muted_path }
end
end
end