about summary refs log blame commit diff
path: root/app/policies/preview_card_provider_policy.rb
blob: 131ccb5ddfb27ab216badaf09bd8e7481d736f6c (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                   
                                 
     
             
                                 
     
# frozen_string_literal: true

class PreviewCardProviderPolicy < ApplicationPolicy
  def index?
    role.can?(:manage_taxonomies)
  end

  def review?
    role.can?(:manage_taxonomies)
  end
end