Add membership verification

This commit is contained in:
2019-12-21 16:27:46 -05:00
parent 0139d66d63
commit e0464cb77c
10 changed files with 108 additions and 21 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ namespace LeafWeb.WebCms.EventHandlers
{
protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
{
base.ApplicationStarted(umbracoApplication, applicationContext);
//base.ApplicationStarted(umbracoApplication, applicationContext);
MemberService.Created += MemberService_Created;
MemberService.Saving += MemberService_OnSaving;
}
@@ -32,7 +32,7 @@ namespace LeafWeb.WebCms.EventHandlers
//Member wasn't approved before save but is now
if (!alreadyApproved)
{
//Code to send email goes here
//todo Code to send email goes here
}
}
}