mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 21:21:36 +01:00
12 lines
149 B
Ruby
12 lines
149 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class PreviewCardProviderPolicy < ApplicationPolicy
|
||
|
def index?
|
||
|
staff?
|
||
|
end
|
||
|
|
||
|
def update?
|
||
|
staff?
|
||
|
end
|
||
|
end
|