From f3f04a5e6e0299521cc0877447f38cc2744e08a5 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sun, 26 Nov 2023 05:05:55 -0500 Subject: [PATCH] NOTIFY_CANCEL --- wrenchboard/email/PROJ/contract_notifycomplete_c.mailfile | 2 +- www-api/app/Controllers/BaseController.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wrenchboard/email/PROJ/contract_notifycomplete_c.mailfile b/wrenchboard/email/PROJ/contract_notifycomplete_c.mailfile index cb112b5c..f3ca83ce 100644 --- a/wrenchboard/email/PROJ/contract_notifycomplete_c.mailfile +++ b/wrenchboard/email/PROJ/contract_notifycomplete_c.mailfile @@ -77,7 +77,7 @@ border: none; - We have notify the task owner of your completion of the task {{contract}} as shown below at {{site_name}}. + We have notified the task owner of your completion of the task {{contract}} as shown below at {{site_name}}. diff --git a/www-api/app/Controllers/BaseController.php b/www-api/app/Controllers/BaseController.php index 13ab481e..b2a548a4 100644 --- a/www-api/app/Controllers/BaseController.php +++ b/www-api/app/Controllers/BaseController.php @@ -273,6 +273,7 @@ abstract class BaseController extends Controller case 'NOTIFY_COMPLETE': // notify completed $data['job_action'] = CONTRACT_NOTIFY_COMPLETE; break; + case 'NOTIFY_CANCEL': // request cancel case 'REQUEST_CANCEL': // request cancel $data['job_action'] = CONTRACT_REQUEST_CANCEL; break;