Gab-Social/app/policies/report_policy.rb
2019-07-02 03:10:25 -04:00

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