aboutsummaryrefslogtreecommitdiff
path: root/API/Startup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'API/Startup.cs')
-rw-r--r--API/Startup.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/API/Startup.cs b/API/Startup.cs
index 087b523..dbe8fdd 100644
--- a/API/Startup.cs
+++ b/API/Startup.cs
@@ -41,7 +41,7 @@ namespace API
{
options.User.RequireUniqueEmail = true;
- // options.Password.RequiredLength = 5;
+ options.Password.RequiredLength = 5;
});
services.AddSwaggerGen(c =>
@@ -76,14 +76,6 @@ namespace API
{
endpoints.MapControllers();
});
-
- // Mapper configuration = new Mapper(new MapperConfiguration(cfg =>
- // {
- // cfg.CreateMap<User, UserDTO>();
- // cfg.CreateMap<UserDTO, User>();
- // }));
-
-
}
}
}