stephb9959
2022-07-24 21:42:23 -07:00
parent 55a43ed40d
commit 6d9a1cac09
15 changed files with 268 additions and 30 deletions

View File

@@ -38,6 +38,8 @@ namespace OpenWifi {
return CompleteResetPassword();
else if(Action=="signup_completion")
return CompleteSubVerification();
else if(Action=="email_invitation")
return CompleteEmailInvitation();
else
return DoReturnA404();
}
@@ -262,4 +264,8 @@ namespace OpenWifi {
SendHTMLFileBack(FormFile, FormVars);
}
void RESTAPI_action_links::CompleteEmailInvitation() {
/// TODO:
}
}