brockallen / BrockAllen.MembershipReboot

MembershipReboot is a user identity management and authentication library.
Other
743 stars 239 forks source link

Account Verification #678

Closed pmbanugo closed 7 years ago

pmbanugo commented 7 years ago

I don't want some users to get an account verification email. I want to automatically from code, mark their account as verified.

brockallen commented 7 years ago

Yes, that's possible as well. You use a different MR config for those scenarios (where an email notification is not registered). Also, there's an API to mark an email as verified.

pmbanugo commented 7 years ago

Ok. The one of a different MR config I can get around by, but I can't seem to find an API to mark the user's account as verified. Please note, that I want this to be done at users account creation without sending email.

brockallen commented 7 years ago

https://github.com/brockallen/BrockAllen.MembershipReboot/blob/master/src/BrockAllen.MembershipReboot/AccountService/UserAccountService.cs#L1870

pmbanugo commented 7 years ago

Thanks. will try that out now.