blob: 131ccb5ddfb27ab216badaf09bd8e7481d736f6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
class PreviewCardProviderPolicy < ApplicationPolicy
def index?
role.can?(:manage_taxonomies)
end
def review?
role.can?(:manage_taxonomies)
end
end
|