16 lines
166 B
Ruby
16 lines
166 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ReportPolicy < ApplicationPolicy
|
|
def update?
|
|
staff?
|
|
end
|
|
|
|
def index?
|
|
staff?
|
|
end
|
|
|
|
def show?
|
|
staff?
|
|
end
|
|
end
|