Skip to content

Commit

Permalink
Do not require email confirm
Browse files Browse the repository at this point in the history
  • Loading branch information
elotoja committed Dec 26, 2023
1 parent 82f62ec commit 91950b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Quizer.Infrastructure/DependencyInjection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static IServiceCollection AddPersistance(this IServiceCollection services

services
.AddIdentity<User, IdentityRole>(options => {
options.SignIn.RequireConfirmedEmail = true;
options.SignIn.RequireConfirmedEmail = false;
options.User.RequireUniqueEmail = true;
options.Password.RequiredLength = 8;
})
Expand Down

0 comments on commit 91950b9

Please sign in to comment.