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
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
2 Answer(s)
-
0
Since Identity Module uses Microsoft Identity, you should be able to set it in
IdentityOptionslike: <br>Configure<IdentityOptions>(options => { options.User.RequireUniqueEmail = false; });Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
This question has been automatically marked as stale because it has not had recent activity.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
