From 8ea1beaf4d30292555f018bcd751a0cd2e2d6e3e Mon Sep 17 00:00:00 2001 From: Arlen Johnson Date: Mon, 30 Sep 2024 12:04:14 -0400 Subject: [PATCH] Set petition titles (Enrollment Flow name, Flow Step description) in dispatch view (CFM-31) (#227) --- .../src/Controller/AttributeCollectorsController.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/plugins/CoreEnroller/src/Controller/AttributeCollectorsController.php b/app/plugins/CoreEnroller/src/Controller/AttributeCollectorsController.php index 0cb0f9928..27faa2749 100644 --- a/app/plugins/CoreEnroller/src/Controller/AttributeCollectorsController.php +++ b/app/plugins/CoreEnroller/src/Controller/AttributeCollectorsController.php @@ -118,12 +118,6 @@ public function dispatch(string $id) { ->find() ->where(['petition_id' => $petition->id]) ->all()); - - // Get the title - // XXX Replace $petition->enrollment_flow_id with the Enrollment Flow "Name" (for now) - // XXX We should have a "Title" for end-users that is different from the Enrollment Flow "Name" - // for start and dispatch. - $this->set('vv_title', $petition->enrollment_flow_id); $this->render('/Standard/dispatch'); }