fix: restricting passphrase to be sent to client (#34610)

This commit is contained in:
Aman Agarwal 2024-07-02 14:04:17 +05:30 committed by GitHub
parent ec5244ce30
commit b98d2d2df3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,6 +28,6 @@ public class KeyPairAuth extends AuthenticationDTO {
@JsonView({Views.Public.class, FromRequest.class})
UploadedFile privateKey;
@JsonView({Views.Public.class, FromRequest.class})
@JsonView({Views.Internal.class, FromRequest.class})
@Encrypted String passphrase;
}