mirror of
https://github.com/glitch-soc/mastodon
synced 2025-04-24 15:24:51 +00:00
23 lines
361 B
Ruby
23 lines
361 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::Fasp::ProviderPolicy < ApplicationPolicy
|
|
def index?
|
|
role.can?(:manage_federation)
|
|
end
|
|
|
|
def show?
|
|
role.can?(:manage_federation)
|
|
end
|
|
|
|
def create?
|
|
role.can?(:manage_federation)
|
|
end
|
|
|
|
def update?
|
|
role.can?(:manage_federation)
|
|
end
|
|
|
|
def destroy?
|
|
role.can?(:manage_federation)
|
|
end
|
|
end
|