Skip to content

Commit

Permalink
Incremented AbpUser.MaxPasswordResetCodeLength and MaxEmailConfirmati…
Browse files Browse the repository at this point in the history
…onCodeLength.
  • Loading branch information
hikalkan committed Apr 2, 2015
1 parent 3d742df commit a0813b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Abp.Zero/Authorization/Users/AbpUser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ public class AbpUser<TTenant, TUser> : FullAuditedEntity<long, TUser>, IUser<lon
/// <summary>
/// Maximum length of the <see cref="EmailConfirmationCode"/> property.
/// </summary>
public const int MaxEmailConfirmationCodeLength = 16;
public const int MaxEmailConfirmationCodeLength = 128;

/// <summary>
/// Maximum length of the <see cref="PasswordResetCode"/> property.
/// </summary>
public const int MaxPasswordResetCodeLength = 32;
public const int MaxPasswordResetCodeLength = 128;

/// <summary>
/// Tenant of this user.
Expand Down

0 comments on commit a0813b5

Please sign in to comment.