mirror of
https://github.com/mastodon/mastodon
synced 2025-04-12 00:56:38 +02:00
16 lines
169 B
Ruby
16 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InstancePolicy < ApplicationPolicy
|
|
def index?
|
|
admin?
|
|
end
|
|
|
|
def show?
|
|
admin?
|
|
end
|
|
|
|
def destroy?
|
|
admin?
|
|
end
|
|
end
|