From a0813b547d3b117453ed9c22f479e1944d36c92a Mon Sep 17 00:00:00 2001 From: hikalkan Date: Thu, 2 Apr 2015 16:21:53 +0300 Subject: [PATCH] Incremented AbpUser.MaxPasswordResetCodeLength and MaxEmailConfirmationCodeLength. --- src/Abp.Zero/Authorization/Users/AbpUser.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Abp.Zero/Authorization/Users/AbpUser.cs b/src/Abp.Zero/Authorization/Users/AbpUser.cs index df0a608b..440e443a 100644 --- a/src/Abp.Zero/Authorization/Users/AbpUser.cs +++ b/src/Abp.Zero/Authorization/Users/AbpUser.cs @@ -46,12 +46,12 @@ public class AbpUser : FullAuditedEntity, IUser /// Maximum length of the property. /// - public const int MaxEmailConfirmationCodeLength = 16; + public const int MaxEmailConfirmationCodeLength = 128; /// /// Maximum length of the property. /// - public const int MaxPasswordResetCodeLength = 32; + public const int MaxPasswordResetCodeLength = 128; /// /// Tenant of this user.