mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-31 16:49:08 +01:00
10 lines
194 B
Ruby
10 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
|