From 7010ff4cc8992c154483c25e330d8137e65a5675 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 15 Feb 2017 21:32:45 -0700 Subject: [PATCH] Update app_config.php --- app/call_flows/app_config.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/call_flows/app_config.php b/app/call_flows/app_config.php index 631762c732..49ea3afb86 100644 --- a/app/call_flows/app_config.php +++ b/app/call_flows/app_config.php @@ -20,7 +20,7 @@ $apps[$x]['description']['pt-br'] = ""; //destination details - $y = 0; + $y=0; $apps[$x]['destinations'][$y]['type'] = "sql"; $apps[$x]['destinations'][$y]['label'] = "call_flows"; $apps[$x]['destinations'][$y]['name'] = "call_flows"; @@ -34,7 +34,7 @@ $apps[$x]['destinations'][$y]['select_label'] = "\${destination} \${name}"; //permission details - $y = 0; + $y=0; $apps[$x]['permissions'][$y]['name'] = "call_flow_view"; $apps[$x]['permissions'][$y]['menu']['uuid'] = "b0939384-7055-44e8-8b4c-9f72293e1878"; $apps[$x]['permissions'][$y]['groups'][] = "superadmin"; @@ -54,9 +54,10 @@ $y++; //schema details - $y = 0; //table array index - $z = 0; //field array index - $apps[$x]['db'][$y]['table'] = "v_call_flows"; + $y=0; + $apps[$x]['db'][$y]['table']['name'] = "v_call_flows"; + $apps[$x]['db'][$y]['table']['parent'] = ""; + $z=0; $apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_uuid"; $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid"; $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";