retrospring/app/controllers/moderation/anonymous_block_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
176 B
Ruby
Raw Normal View History

2022-08-13 21:21:17 +02:00
# frozen_string_literal: true
class Moderation::AnonymousBlockController < ApplicationController
def index
@anonymous_blocks = AnonymousBlock.where(user: nil)
end
end