mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05: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]
|
[Required]
|
||||||
[EncryptedString]
|
[EncryptedString]
|
||||||
[EncryptedStringLength(5000)]
|
[EncryptedStringLength(35000)]
|
||||||
public string Value { get; set; }
|
public string Value { get; set; }
|
||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
|
@ -13,7 +13,7 @@ public class SecretUpdateRequestModel : IValidatableObject
|
|||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
[EncryptedString]
|
[EncryptedString]
|
||||||
[EncryptedStringLength(5000)]
|
[EncryptedStringLength(35000)]
|
||||||
public string Value { get; set; }
|
public string Value { get; set; }
|
||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user