Update app_defaults.php

This commit is contained in:
FusionPBX 2019-08-23 21:38:53 -06:00 committed by GitHub
parent 95c3da9f13
commit 65035adb32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,9 @@ if ($domains_processed == 1) {
$group->defaults();
//create the user view combines username, organization, contact first and last name
$db->exec("DROP VIEW view_users;");
$database = new database;
$database->execute("DROP VIEW view_users;", null);
$sql = "CREATE VIEW view_users AS ( \n";
$sql .= " select u.domain_uuid, u.user_uuid, d.domain_name, u.username, u.user_enabled, u.add_date, \n";
$sql .= " c.contact_uuid, c.contact_organization, c.contact_name_given, c.contact_name_family, \n";