forked from treehouse/mastodon
12 lines
141 B
Ruby
12 lines
141 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class PreviewCardPolicy < ApplicationPolicy
|
||
|
def index?
|
||
|
staff?
|
||
|
end
|
||
|
|
||
|
def update?
|
||
|
staff?
|
||
|
end
|
||
|
end
|