Sha256: da632a4acfc62bd155b3da549e881d9de802b95a591dd3672bde537cd3f5d9e3
Contents?: true
Size: 397 Bytes
Versions: 16
Compression:
Stored size: 397 Bytes
Contents
# frozen_string_literal: true module Spree module PermissionSets # Full permissions for stock management. # # This permission set grants full control over all stock items and read # access to locations. class StockManagement < PermissionSets::Base def activate! can :manage, Spree::StockItem can :read, Spree::StockLocation end end end end
Version data entries
16 entries across 16 versions & 1 rubygems