From 9e6c26d19409d8e6346b4e35ef65b1bc6e2473c1 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 20 Apr 2022 18:16:46 -0600 Subject: [PATCH] Add fax notify sent and date --- app/fax_queue/app_config.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/app/fax_queue/app_config.php b/app/fax_queue/app_config.php index b3b6b9ba08..96667bc11d 100644 --- a/app/fax_queue/app_config.php +++ b/app/fax_queue/app_config.php @@ -152,9 +152,22 @@ $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz'; $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date'; $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date'; - $apps[$x]['db'][$y]['fields'][$z]['search_by'] = '1'; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Date the fax was retried'; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_notify_sent'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'boolean'; + $apps[$x]['db'][$y]['fields'][$z]['toggle'] = ['true','false']; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Fax notification sent. true,false'; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_notify_date'; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz'; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date'; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date'; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = '1'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Date the fax notification was sent'; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_retry_count'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric'; $apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';