Revert "modify sso queries for schema change"

This reverts commit 8b67d06272.
This commit is contained in:
Grant Limberg 2022-09-28 13:26:41 -07:00
parent 2b1ba60f24
commit 4e57abb159
No known key found for this signature in database
GPG Key ID: 8F2F97D3BE8D7735

View File

@ -442,13 +442,9 @@ AuthInfo PostgreSQL::getSSOAuthInfo(const nlohmann::json &member, const std::str
exit(7); exit(7);
} }
r = w.exec_params("SELECT oc.client_id, oc.authorization_endpoint, oc.issuer, oc.sso_impl_version " r = w.exec_params("SELECT org.client_id, org.authorization_endpoint, org.issuer, org.sso_impl_version "
"FROM ztc_network n " "FROM ztc_network AS nw, ztc_org AS org "
"INNER JOIN ztc_network_oidc_config noc " "WHERE nw.id = $1 AND nw.sso_enabled = true AND org.owner_id = nw.owner_id", networkId);
" ON noc.network_id = n.id "
"INNER JOIN ztc_oidc_config oc "
" ON noc.client_id = oc.client_id "
"WHERE n.id = $1 AND n.sso_enabled = true", networkId);
std::string client_id = ""; std::string client_id = "";
std::string authorization_endpoint = ""; std::string authorization_endpoint = "";