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

class PreviewCardPolicy < ApplicationPolicy
  def index?
    staff?
  end

  def update?
    staff?
  end
end