mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 10:16:03 +01:00
7 lines
176 B
Ruby
7 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Moderation::AnonymousBlockController < ApplicationController
|
|
def index
|
|
@anonymous_blocks = AnonymousBlock.where(user: nil)
|
|
end
|
|
end
|