mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
24 lines
795 B
Ruby
24 lines
795 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::Instances::DomainBlocksController < Api::BaseController
|
|
skip_before_action :require_authenticated_user!, unless: :whitelist_mode?
|
|
|
|
before_action :require_enabled_api!
|
|
before_action :set_domain_blocks
|
|
|
|
def index
|
|
expires_in 3.minutes, public: true
|
|
render json: @domain_blocks, each_serializer: REST::DomainBlockSerializer, with_comment: (Setting.show_domain_blocks_rationale == 'all' || (Setting.show_domain_blocks_rationale == 'users' && user_signed_in?))
|
|
end
|
|
|
|
private
|
|
|
|
def require_enabled_api!
|
|
head 404 unless Setting.show_domain_blocks == 'all' || (Setting.show_domain_blocks == 'users' && user_signed_in?)
|
|
end
|
|
|
|
def set_domain_blocks
|
|
@domain_blocks = DomainBlock.with_user_facing_limitations.by_severity
|
|
end
|
|
end
|