mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
18 lines
345 B
Ruby
18 lines
345 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Api::V1::Instances::RulesController < Api::BaseController
|
||
|
skip_before_action :require_authenticated_user!, unless: :whitelist_mode?
|
||
|
|
||
|
before_action :set_rules
|
||
|
|
||
|
def index
|
||
|
render json: @rules, each_serializer: REST::RuleSerializer
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_rules
|
||
|
@rules = Rule.ordered
|
||
|
end
|
||
|
end
|