From 8f0a6b01a8131cf984b8aada93d87b7c1994963d Mon Sep 17 00:00:00 2001 From: Jonathan Niles Date: Mon, 12 Sep 2016 15:29:05 +0100 Subject: [PATCH] fix(patients): groups now navigable via the tree This Patient Groups page is now reachable via the tree navigation. Previously, this URL was broken with a trailing slash. Closes #701. --- server/models/test/data.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/models/test/data.sql b/server/models/test/data.sql index 6e1ea4178d..911167cb0a 100644 --- a/server/models/test/data.sql +++ b/server/models/test/data.sql @@ -26,7 +26,7 @@ INSERT INTO unit VALUES (21, 'Price List','TREE.PRICE_LIST','Configure price lists!',1,'/partials/price_list/','/prices'), (22, 'Exchange Rate','TREE.EXCHANGE','Set todays exchange rate!',1,'/partials/exchange_rate/','/exchange'), (26, 'Location Manager','TREE.LOCATION','',1,'/partials/locations/locations.html','/locations'), - (29, 'Patient Group','TREE.PATIENT_GRP','',1,'/partials/patient/group/','/patients/groups/'), + (29, 'Patient Group','TREE.PATIENT_GRP','',1,'/partials/patients/groups/','/patients/groups'), (48, 'Service Management','TREE.SERVICE','',1,'partials/services/','/services'), (57, 'Payroll','TREE.PAYROLL','',0,'partials/payroll/','/payroll/'), (61, 'Employee','TREE.EMPLOYEE','Employees management',57,'partials/employees/','/employees'),