Class: Spree::PermissionSets::ProductManagement

Inherits:
Base
  • Object
show all
Defined in:
app/models/spree/permission_sets/product_management.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Spree::PermissionSets::Base

Instance Method Details

#activate!Object



4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'app/models/spree/permission_sets/product_management.rb', line 4

def activate!
  can :manage, Spree::Product
  can :manage, Spree::Image
  can :manage, Spree::Variant
  can :manage, Spree::OptionValue
  can :manage, Spree::ProductProperty
  can :manage, Spree::OptionType
  can :manage, Spree::Property
  can :manage, Spree::Prototype
  can :manage, Spree::Taxonomy
  can :manage, Spree::Taxon
  can :manage, Spree::Classification
end