Revert "query update for sso"

This reverts commit 3c343eb775.
This commit is contained in:
Grant Limberg 2022-09-28 13:04:08 -07:00
parent b909330518
commit 638c868a07
No known key found for this signature in database
GPG Key ID: 8F2F97D3BE8D7735

View File

@ -547,11 +547,7 @@ void PostgreSQL::initializeNetworks()
"ARRAY(SELECT CONCAT(host(address),'/',bits::text,'|',COALESCE(host(via), 'NULL'))FROM ztc_network_route WHERE network_id = n.id) AS routes "
"FROM ztc_network n "
"LEFT OUTER JOIN ztc_org o "
" ON o.owner_id = n.owner_id "
"LEFT OUTER JOIN ztc_network_oidc_config noc "
" ON noc.network_id = n.id "
"LEFT OUTER JOIN ztc_oidc_config oc "
" ON noc.client_id = oc.client_id AND o.org_id = oc.org_id "
" ON o.owner_id = n.owner_id "
"LEFT OUTER JOIN ztc_network_dns d "
" ON d.network_id = n.id "
"WHERE deleted = false AND controller_id = '%s'", _myAddressStr.c_str());