mirror of
https://github.com/glitch-soc/mastodon
synced 2025-09-15 08:21:14 +00:00
11 lines
136 B
Ruby
11 lines
136 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InstancePolicy < ApplicationPolicy
|
|
def index?
|
|
admin?
|
|
end
|
|
|
|
def show?
|
|
admin?
|
|
end
|
|
end
|