Sha256: c6c136393d5dc45be21443ca417b388f14a247ff98d18a1756fe9a49fb044ca5
Contents?: true
Size: 374 Bytes
Versions: 58
Compression:
Stored size: 374 Bytes
Contents
module Spree module PermissionSets class RestrictedStockManagement < PermissionSets::Base def activate! can :manage, Spree::StockItem, stock_location_id: location_ids can :display, Spree::StockLocation, id: location_ids end private def location_ids @ids ||= user.stock_locations.pluck(:id) end end end end
Version data entries
58 entries across 58 versions & 1 rubygems