File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Models/Account Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 11using System . ComponentModel . DataAnnotations ;
2+ using Abp . Auditing ;
23
34namespace AbpCompanyName . AbpProjectName . Web . Models . Account
45{
@@ -8,6 +9,7 @@ public class LoginViewModel
89 public string UsernameOrEmailAddress { get ; set ; }
910
1011 [ Required ]
12+ [ DisableAuditing ]
1113 public string Password { get ; set ; }
1214
1315 public bool RememberMe { get ; set ; }
Original file line number Diff line number Diff line change 11using System . Collections . Generic ;
22using System . ComponentModel . DataAnnotations ;
33using System . Text . RegularExpressions ;
4+ using Abp . Auditing ;
45using Abp . Authorization . Users ;
56using Abp . Extensions ;
67
@@ -25,6 +26,7 @@ public class RegisterViewModel : IValidatableObject
2526 public string EmailAddress { get ; set ; }
2627
2728 [ StringLength ( AbpUserBase . MaxPlainPasswordLength ) ]
29+ [ DisableAuditing ]
2830 public string Password { get ; set ; }
2931
3032 public bool IsExternalLogin { get ; set ; }
You can’t perform that action at this time.
0 commit comments