allow testUpdate user to update work orders

pull/11/head
Dan Gowans 2025-04-28 15:46:54 -04:00
parent 50551582c1
commit 927334d954
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ config.session.doKeepAlive = true;
config.users = { config.users = {
canLogin: ['*testView', '*testUpdate', '*testAdmin'], canLogin: ['*testView', '*testUpdate', '*testAdmin'],
canUpdate: ['*testUpdate'], canUpdate: ['*testUpdate'],
canUpdateWorkOrders: ['*testUpdate'],
isAdmin: ['*testAdmin'], isAdmin: ['*testAdmin'],
testing: ['*testView', '*testUpdate', '*testAdmin'] testing: ['*testView', '*testUpdate', '*testAdmin']
}; };

View File

@ -11,6 +11,7 @@ config.session.doKeepAlive = true
config.users = { config.users = {
canLogin: ['*testView', '*testUpdate', '*testAdmin'], canLogin: ['*testView', '*testUpdate', '*testAdmin'],
canUpdate: ['*testUpdate'], canUpdate: ['*testUpdate'],
canUpdateWorkOrders: ['*testUpdate'],
isAdmin: ['*testAdmin'], isAdmin: ['*testAdmin'],
testing: ['*testView', '*testUpdate', '*testAdmin'] testing: ['*testView', '*testUpdate', '*testAdmin']
} }