From d9a9bbc8e0afa090b882770afa8273c974e023d5 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 16 Jul 2022 11:27:03 -0600 Subject: [PATCH] Add destination_actions to the destinations table. --- app/destinations/app_config.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/destinations/app_config.php b/app/destinations/app_config.php index d407c48c9c..a15287e67a 100644 --- a/app/destinations/app_config.php +++ b/app/destinations/app_config.php @@ -334,6 +334,12 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Number is used for text messages."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_actions"; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "json"; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Array of destination Actions."; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_app"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the application.";