Sha256: 3230186c7f3738ab72c8967f4ad8e7a4d347ed3118ce6a4bc0b710d53a6b99a3
Contents?: true
Size: 669 Bytes
Versions: 18
Compression:
Stored size: 669 Bytes
Contents
# frozen_string_literal: true module Spree module PermissionSets # Full permissions for promotion management. # # This permission set grants full control over all promotion and related resources, # including: # # - Promotions # - Promotion rules # - Promotion actions # - Promotion categories # - Promotion codes class PromotionManagement < PermissionSets::Base def activate! can :manage, Spree::Promotion can :manage, Spree::PromotionRule can :manage, Spree::PromotionAction can :manage, Spree::PromotionCategory can :manage, Spree::PromotionCode end end end end
Version data entries
18 entries across 18 versions & 2 rubygems