Update app_defaults.php

This commit is contained in:
FusionPBX
2019-08-23 21:38:53 -06:00
committed by GitHub
parent 27c420fc19
commit 76f34c0440

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";