mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-01 03:33:53 +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
|