0
abpVAndy created
- ABP Framework version: v4.30
- UI type: Angular
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): yes
- Exception message and stack trace:
- Steps to reproduce the issue:
Is there any way I could new user only with Username and Password? UI and back code. I donot need email when new user.
I check Volo.Abp.Identity, and see the [Required] in here: IdentityUserCreateOrUpdateDtoBase
Thanks
2 Answer(s)
-
0
Since Identity Module uses Microsoft Identity, you should be able to set it in
IdentityOptions
like: <br>Configure<IdentityOptions>(options => { options.User.RequireUniqueEmail = false; });
-
0
This question has been automatically marked as stale because it has not had recent activity.