We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 444fdb6 + 305511e commit 26dab0aCopy full SHA for 26dab0a
aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Core/Models/TokenAuth/AuthenticateModel.cs
@@ -1,4 +1,5 @@
1
using System.ComponentModel.DataAnnotations;
2
+using Abp.Auditing;
3
using Abp.Authorization.Users;
4
5
namespace AbpCompanyName.AbpProjectName.Models.TokenAuth
@@ -11,8 +12,9 @@ public class AuthenticateModel
11
12
13
[Required]
14
[StringLength(AbpUserBase.MaxPlainPasswordLength)]
15
+ [DisableAuditing]
16
public string Password { get; set; }
-
17
+
18
public bool RememberClient { get; set; }
19
}
20
0 commit comments