mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
Increase secret value max limit (#3193)
This commit is contained in:
parent
640cb68d51
commit
7cac93ea90
@ -13,7 +13,7 @@ public class SecretCreateRequestModel : IValidatableObject
|
||||
|
||||
[Required]
|
||||
[EncryptedString]
|
||||
[EncryptedStringLength(5000)]
|
||||
[EncryptedStringLength(35000)]
|
||||
public string Value { get; set; }
|
||||
|
||||
[Required]
|
||||
|
@ -13,7 +13,7 @@ public class SecretUpdateRequestModel : IValidatableObject
|
||||
|
||||
[Required]
|
||||
[EncryptedString]
|
||||
[EncryptedStringLength(5000)]
|
||||
[EncryptedStringLength(35000)]
|
||||
public string Value { get; set; }
|
||||
|
||||
[Required]
|
||||
|
Loading…
Reference in New Issue
Block a user