1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-01 16:28:35 +09:00
YuruToot/app/controllers/api/v1/instances/rules_controller.rb
2021-02-21 19:50:12 +01:00

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