Framework update.

This commit is contained in:
stephb9959
2021-10-25 14:34:14 -07:00
parent ed13053648
commit d695614567
6 changed files with 39 additions and 10 deletions

View File

@@ -437,4 +437,14 @@ namespace OpenWifi::ProvObjects {
return false;
}
bool UpdateObjectInfo(const Poco::JSON::Object::Ptr &O, const SecurityObjects::UserInfo &U, ObjectInfo &I) {
if(O->has("name"))
I.name = O->get("name").toString();
if(O->has("description"))
I.description = O->get("description").toString();
SecurityObjects::MergeNotes(O,U,I.notes);
I.modified = std::time(nullptr);
return true;
}
};