Remove prepended username from `/v2/backup/auth` response

This commit is contained in:
Chris Eager 2023-03-21 17:16:39 -05:00 committed by ravi-signal
parent 82baa892f7
commit fe9c3982a1
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ public class SecureValueRecovery2Controller {
return ExternalServiceCredentialsGenerator
.builder(cfg.userAuthenticationTokenSharedSecret())
.withUserDerivationKey(cfg.userIdTokenSharedSecret())
.prependUsername(false)
.build();
}