Browse Source

添加注释说明

zhontai 2 years ago
parent
commit
99e3ec3ffe

+ 1 - 1
src/hosts/ZhonTai.Host/Configs/appconfig.json

@@ -94,7 +94,7 @@
     //结果格式化
     "formatResult": true
   },
-  //实现标准标识密码哈希
+  //实现标准标识密码哈希,相同密码加密后各不相同
   "passwordHasher": false,
   //最大请求大小
   "maxRequestBodySize": 104857600,

+ 1 - 0
src/platform/ZhonTai.Admin/Core/RegisterModules/RegisterModule.cs

@@ -69,6 +69,7 @@ public class RegisterModule : Module
             .InterceptedBy(interceptorServiceTypes.ToArray())
             .EnableClassInterceptors();
 
+            //密码哈希泛型注入
             builder.RegisterGeneric(typeof(PasswordHasher<>)).As(typeof(IPasswordHasher<>)).SingleInstance().PropertiesAutowired();
 
             //仓储泛型注入