Sha256: 26af96ee2c9026879589c54749684310f757e5b7d0358d0557c71085f8b619a0
Contents?: true
Size: 560 Bytes
Versions: 5
Compression:
Stored size: 560 Bytes
Contents
# frozen_string_literal: true module Spree module PermissionSets # Read-only permissions for stock. # # This permission set allows users to view information about stock items # (also from the admin panel) and stock locations. class StockDisplay < PermissionSets::Base class << self def privilege :display end def category :stock end end def activate! can [:read, :admin], Spree::StockItem can :read, Spree::StockLocation end end end end
Version data entries
5 entries across 5 versions & 1 rubygems