about summary refs log tree commit diff
path: root/app/policies/preview_card_provider_policy.rb
blob: 44d2ad5cfc56b7370be4807298131eaf5c0a7de4 (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 review?
    staff?
  end
end