Fixing ActionLinks

This commit is contained in:
stephb9959
2021-11-09 13:24:26 -08:00
parent 00742a5d0a
commit c0ef77eb53
8 changed files with 20 additions and 11 deletions

View File

@@ -222,9 +222,14 @@ namespace OpenWifi::SecurityObjects {
bool from_json(Poco::JSON::Object::Ptr &Obj);
};
enum LinkActions {
FORGOT_PASSWORD=1,
VERIFY_EMAIL
};
struct ActionLink {
std::string id;
std::string action;
uint64_t action;
std::string userId;
std::string actionTemplate;
Types::StringPairVec variables;