From 0307afb898cbacb16d6721395660d9e227527c97 Mon Sep 17 00:00:00 2001 From: Benn Oshrin Date: Thu, 6 Oct 2022 10:59:17 -0400 Subject: [PATCH] Fix interim dashboard permission (NOJIRA) --- app/src/Model/Table/DashboardsTable.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/Model/Table/DashboardsTable.php b/app/src/Model/Table/DashboardsTable.php index c29c2b954..a6eaa2abd 100644 --- a/app/src/Model/Table/DashboardsTable.php +++ b/app/src/Model/Table/DashboardsTable.php @@ -73,7 +73,8 @@ public function initialize(array $config): void { // Actions that operate over a table (ie: do not require an $id) 'table' => [ 'configuration' => ['platformAdmin', 'coAdmin'], - 'dashboard' => ['coMember'], + // XXX CFM-230 This needs to be updated for actual Dashboard permissions + 'dashboard' => ['platformAdmin', 'coAdmin', 'coMember'], 'search' => ['platformAdmin', 'coAdmin'] /* 'add' => ['platformAdmin', 'coAdmin'], 'index' => ['platformAdmin', 'coAdmin']*/