Update app_config.php

This commit is contained in:
FusionPBX
2017-02-15 21:23:56 -07:00
committed by GitHub
parent 1fc255acc9
commit 3997e144f5

View File

@@ -1,4 +1,5 @@
<?php
//application details
$apps[$x]['name'] = "User Manager";
$apps[$x]['uuid'] = "112124b3-95c2-5352-7e9d-d14c0b88f207";
@@ -19,7 +20,7 @@
$apps[$x]['description']['pt-br'] = "";
//permission details
$y = 0;
$y=0;
$apps[$x]['permissions'][$y]['name'] = "user_view";
$apps[$x]['permissions'][$y]['menu']['uuid'] = "0d57cc1e-1874-47b9-7ddd-fe1f57cec99b";
$apps[$x]['permissions'][$y]['groups'][] = "admin";
@@ -63,9 +64,10 @@
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
//schema details
$y = 0; //table array index
$z = 0; //field array index
$apps[$x]['db'][$y]['table'] = "v_users";
$y=0;
$apps[$x]['db'][$y]['table']['name'] = "v_users";
$apps[$x]['db'][$y]['table']['parent'] = "";
$z=0;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "user_uuid";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
@@ -150,9 +152,10 @@
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$y = 1; //table array index
$z = 0; //field array index
$apps[$x]['db'][$y]['table'] = "v_user_settings";
$y=1;
$apps[$x]['db'][$y]['table']['name'] = "v_user_settings";
$apps[$x]['db'][$y]['table']['parent'] = "";
$z=0;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "user_setting_uuid";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
@@ -202,4 +205,5 @@
$apps[$x]['db'][$y]['fields'][$z]['name'] = "user_setting_description";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
?>