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