make DB::_memberChanged and _networkChanged virtual

This commit is contained in:
Grant Limberg 2021-06-02 13:46:11 -07:00
parent 47154fa623
commit 19f4146aca
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A
3 changed files with 9 additions and 5 deletions

View file

@ -197,6 +197,7 @@ void DB::networks(std::set<uint64_t> &networks)
void DB::_memberChanged(nlohmann::json &old,nlohmann::json &memberConfig,bool notifyListeners)
{
fprintf(stderr, "DB::_memberChanged\n");
uint64_t memberId = 0;
uint64_t networkId = 0;
bool isAuth = false;
@ -312,6 +313,7 @@ void DB::_memberChanged(nlohmann::json &old,nlohmann::json &memberConfig,bool no
void DB::_networkChanged(nlohmann::json &old,nlohmann::json &networkConfig,bool notifyListeners)
{
fprintf(stderr, "DB::_networkChanged\n");
if (networkConfig.is_object()) {
const std::string ids = networkConfig["id"];
const uint64_t networkId = Utils::hexStrToU64(ids.c_str());