Files
mastodon-sakyey/app/policies/admin/collection_policy.rb
2026-02-25 14:32:07 +00:00

20 lines
320 B
Ruby

# frozen_string_literal: true
class Admin::CollectionPolicy < ApplicationPolicy
def index?
role.can?(:manage_reports, :manage_users)
end
def show?
role.can?(:manage_reports, :manage_users)
end
def destroy?
role.can?(:manage_reports)
end
def update?
role.can?(:manage_reports)
end
end