fix(comments): added new role to put comments in

This commit is contained in:
2025-10-31 07:15:09 -05:00
parent 25a958d592
commit 1283a63b5f

View File

@@ -7,7 +7,13 @@ export const Route = createFileRoute(
)({
beforeLoad: async () => {
const auth = await checkUserAccess({
allowedRoles: ["systemAdmin", "technician", "admin", "manager"],
allowedRoles: [
"systemAdmin",
"technician",
"admin",
"manager",
"supervisor",
],
moduleName: "siloAdjustments", // optional
});