2021-11-25 04:07:38 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PreviewCardPolicy < ApplicationPolicy
|
|
|
|
def index?
|
2022-07-04 17:41:40 -07:00
|
|
|
role.can?(:manage_taxonomies)
|
2021-11-25 04:07:38 -08:00
|
|
|
end
|
|
|
|
|
2022-02-24 15:34:14 -08:00
|
|
|
def review?
|
2022-07-04 17:41:40 -07:00
|
|
|
role.can?(:manage_taxonomies)
|
2021-11-25 04:07:38 -08:00
|
|
|
end
|
|
|
|
end
|