mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-01 04:55:30 +00:00
12 lines
143 B
Ruby
12 lines
143 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class InstancePolicy < ApplicationPolicy
|
||
|
def index?
|
||
|
admin?
|
||
|
end
|
||
|
|
||
|
def resubscribe?
|
||
|
admin?
|
||
|
end
|
||
|
end
|