1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-03 13:38:17 +00:00
mastodon/app/policies/announcement_policy.rb

20 lines
311 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AnnouncementPolicy < ApplicationPolicy
def index?
role.can?(:manage_announcements)
end
def create?
role.can?(:manage_announcements)
end
def update?
role.can?(:manage_announcements)
end
def destroy?
role.can?(:manage_announcements)
end
end