1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

Increase secret value max limit (#3193)

This commit is contained in:
Thomas Avery
2023-08-28 11:10:32 -05:00
committed by GitHub
parent 640cb68d51
commit 7cac93ea90
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ public class SecretCreateRequestModel : IValidatableObject
[Required]
[EncryptedString]
[EncryptedStringLength(5000)]
[EncryptedStringLength(35000)]
public string Value { get; set; }
[Required]

View File

@ -13,7 +13,7 @@ public class SecretUpdateRequestModel : IValidatableObject
[Required]
[EncryptedString]
[EncryptedStringLength(5000)]
[EncryptedStringLength(35000)]
public string Value { get; set; }
[Required]