6 lines
145 B
Ruby
6 lines
145 B
Ruby
|
class Moderation::AnonymousBlockController < ApplicationController
|
||
|
def index
|
||
|
@anonymous_blocks = AnonymousBlock.where(user: nil)
|
||
|
end
|
||
|
end
|