forked from treehouse/mastodon
20 lines
207 B
Ruby
20 lines
207 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AnnouncementPolicy < ApplicationPolicy
|
||
|
def index?
|
||
|
staff?
|
||
|
end
|
||
|
|
||
|
def create?
|
||
|
admin?
|
||
|
end
|
||
|
|
||
|
def update?
|
||
|
admin?
|
||
|
end
|
||
|
|
||
|
def destroy?
|
||
|
admin?
|
||
|
end
|
||
|
end
|