limit to hooks with hook_type = NETWORK_JOIN enabled

This commit is contained in:
Grant Limberg 2023-08-08 13:14:55 -07:00
parent 88b96265d7
commit 802c9907a1
No known key found for this signature in database
GPG key ID: 8F2F97D3BE8D7735

View file

@ -1689,13 +1689,16 @@ void PostgreSQL::notifyNewMember(const std::string &networkID, const std::string
auto res = w.exec_params("SELECT h.hook_url "
"FROM ztc_hook h "
"INNER JOIN ztc_hook_hook_types ht "
"ON ht.hook_id = h.hook_id "
"INNER JOIN ztc_org o "
"ON o.org_id = h.org_id "
"INNER JOIN ztc_user u "
"ON u.id = o.owner_id "
"INNER JOIN ztc_network n "
"ON n.owner_id = u.id "
"WHERE n.id = $1", networkID);
"WHERE n.id = $1 "
"AND ht.hook_type = 'NETWORK_JOIN'", networkID);
for (auto const &row: res) {
std::string hookURL = row[0].as<std::string>();