mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 12:16:04 +01:00
9 lines
194 B
Ruby
9 lines
194 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Settings::MutesController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
@rules = MuteRule.where(user: current_user)
|
|
end
|
|
end
|