mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-04-01 21:59:12 +02:00
5 lines
145 B
Ruby
5 lines
145 B
Ruby
class Moderation::AnonymousBlockController < ApplicationController
|
|
def index
|
|
@anonymous_blocks = AnonymousBlock.where(user: nil)
|
|
end
|
|
end
|