This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2021-11-25 04:07:38 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PreviewCardPolicy < ApplicationPolicy
|
|
|
|
def index?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
2022-02-24 15:34:14 -08:00
|
|
|
def review?
|
2021-11-25 04:07:38 -08:00
|
|
|
staff?
|
|
|
|
end
|
|
|
|
end
|