From 927334d9540c552c58ce5c1d6001ba3b4eb11c3c Mon Sep 17 00:00:00 2001 From: Dan Gowans Date: Mon, 28 Apr 2025 15:46:54 -0400 Subject: [PATCH] allow testUpdate user to update work orders --- data/testing.config.js | 1 + data/testing.config.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/data/testing.config.js b/data/testing.config.js index 6fbf2e24..dd18a2e1 100644 --- a/data/testing.config.js +++ b/data/testing.config.js @@ -5,6 +5,7 @@ config.session.doKeepAlive = true; config.users = { canLogin: ['*testView', '*testUpdate', '*testAdmin'], canUpdate: ['*testUpdate'], + canUpdateWorkOrders: ['*testUpdate'], isAdmin: ['*testAdmin'], testing: ['*testView', '*testUpdate', '*testAdmin'] }; diff --git a/data/testing.config.ts b/data/testing.config.ts index 228174b1..83298569 100644 --- a/data/testing.config.ts +++ b/data/testing.config.ts @@ -11,6 +11,7 @@ config.session.doKeepAlive = true config.users = { canLogin: ['*testView', '*testUpdate', '*testAdmin'], canUpdate: ['*testUpdate'], + canUpdateWorkOrders: ['*testUpdate'], isAdmin: ['*testAdmin'], testing: ['*testView', '*testUpdate', '*testAdmin'] }