Is there anyway to make Email ID optional and use Mobile Number instead in user store? #9377
-
Hello, I want to use ABP Framework for backend APIs for a mobile app. We don't need Email ID, we want to make email id optional. Is there any way to do this with ABP Framework? Regards, |
Beta Was this translation helpful? Give feedback.
Answered by
realLiangshiwei
Jun 21, 2021
Replies: 1 comment 1 reply
-
Try: Configure<IdentityOptions>(options=>
{
options.User.RequireUniqueEmail = false;
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
maliming
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try: