about summary refs log tree commit diff
path: root/app/policies/report_policy.rb
blob: 95b5c30c885eee418a96207f0484e589bd32f5c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class ReportPolicy < ApplicationPolicy
  def update?
    staff?
  end

  def index?
    staff?
  end

  def show?
    staff?
  end
end