about summary refs log tree commit diff
path: root/app/policies/preview_card_provider_policy.rb
blob: 598d54a5e28c2a741c37a62d532e95869817eed9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class PreviewCardProviderPolicy < ApplicationPolicy
  def index?
    staff?
  end

  def update?
    staff?
  end
end