Users and Roles
Access to the WMS is controlled through a role-based access control (RBAC) system. Users are assigned roles, and roles are granted specific permissions.
Concepts
Section titled “Concepts”Permissions
Section titled “Permissions”A permission is a specific action on a specific resource, written as action:resource. For example:
create:inbound-order— can create inbound ordersread:audit-log— can view the audit log*:*— superuser access (all actions on all resources)
Access checks match the required permission exactly, or fall back to the single super-permission *:*. There is no manage shortcut that expands to create/read/update/delete, and no partial wildcards like read:* or *:warehouse. To grant broad access you either list each create/read/update/delete permission explicitly, or assign *:*. See the Permissions Reference for the full list of what is actually enforced.
A role is a named collection of permissions. You assign roles to users instead of assigning permissions directly. This makes it easy to manage access for groups of users with the same responsibilities.
Roles are custom — the system does not ship with pre-built roles. You create roles that match your team structure.
A user is a person who logs in to the WMS. Each user is assigned exactly one role, and that role’s permissions are their effective permissions. Each user also belongs to a single warehouse. (To give someone a different mix of permissions, change their role or adjust the role’s permissions — you cannot stack multiple roles on one user.)
Setting up roles
Section titled “Setting up roles”User, role, and permission management all live under Admin → Users & Roles in the sidebar — a section visible only to users whose role name is admin or superadmin.
Creating a role
Section titled “Creating a role”- From the Admin area, open the Create Role form
- Enter a name (e.g.,
Warehouse Operator,Receiving Team,Manager) - Save the role
Assigning permissions to a role
Section titled “Assigning permissions to a role”Permissions are granted on the role-permissions screen, where you grant or revoke individual permissions for the selected role.
- Select the role
- Grant each
action:resourcepermission the role should have, and revoke any it shouldn’t (remember: grant the concrete actions —manage:*andread:*do nothing; see below)
Repeat until the role has the permissions needed for that job function.
Example role configurations
Section titled “Example role configurations”Because there is no manage shortcut and no wildcards (other than *:*), grant each concrete permission you need.
Receiving Operator — can work with inbound orders only:
create:inbound-order,read:inbound-order,update:inbound-orderread:warehouse-item,read:bin,read:lot
(There is no separate inbound-line permission — lines are managed through the order, and update:inbound-order covers start-receiving, recording receipts, and completing.)
Warehouse Operator — full day-to-day warehouse operations:
create:inbound-order,read:inbound-order,update:inbound-ordercreate:outbound-order,read:outbound-order,update:outbound-ordercreate:transfer-order,read:transfer-order,update:transfer-ordercreate:stock-count,read:stock-count,update:stock-countread:warehouse-item,read:bin,read:lot,read:zone,read:aisle,read:rack,read:shelf
(Stock adjustments are not permission-guarded, so no permission is needed — or available — to post them.)
Warehouse Manager — full operational access plus configuration. List the locations/catalog actions explicitly:
- Everything the Warehouse Operator has, plus:
create:warehouse-item,read:warehouse-item,update:warehouse-itemcreate:category,read:category,update:category,delete:categoryread:inventory-transaction,read:audit-log- For each of
zone,aisle,rack,shelf,bin:create,read,update,delete
System Administrator — full access:
*:*
Managing users
Section titled “Managing users”Creating a user
Section titled “Creating a user”- In the sidebar, open Admin → Users & Roles
- Add a new user and enter their details
- Save
Assigning a role to a user
Section titled “Assigning a role to a user”- On the Users & Roles screen, find the user
- Set their role (selected from the roles you created)
- Save
A user’s effective permissions come from their assigned role.
Removing access
Section titled “Removing access”To restrict a user, reassign them to a role with fewer (or no) permissions. To permanently remove access, delete the user record.
Audit trail
Section titled “Audit trail”Key actions performed by users (creating and modifying records) are recorded in the Audit Log. Each entry records:
- The user who performed the action
- The action type (create, read, update, delete)
- The resource affected and its before/after state
- The user’s IP address and browser
- The timestamp
The audit log is read-only. Use it to investigate discrepancies or review who changed what.
To view the audit log, open History → Audit Log in the sidebar. You need the read:audit-log permission.