mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-13 06:35:08 +01:00
4fa2f7e82d
This should eventually be accessible via the API and the web frontend, but I find it easier to set up an editing interface using Rails templates and the like. We can always take it out if it turns out we don't need it.
8 lines
152 B
Ruby
8 lines
152 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Settings::KeywordMutesController < ApplicationController
|
|
layout 'admin'
|
|
|
|
before_action :authenticate_user!
|
|
end
|