mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
[PM-7919] return exception if trying to overwrite keypair (#4052)
* return exception if trying to overwrite keypair * add feature flag
This commit is contained in:
parent
90e065556e
commit
2a535ac835
@ -618,6 +618,14 @@ public class AccountsController : Controller
|
|||||||
throw new UnauthorizedAccessException();
|
throw new UnauthorizedAccessException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_featureService.IsEnabled(FeatureFlagKeys.ReturnErrorOnExistingKeypair))
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrWhiteSpace(user.PrivateKey) || !string.IsNullOrWhiteSpace(user.PublicKey))
|
||||||
|
{
|
||||||
|
throw new BadRequestException("User has existing keypair");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
await _userService.SaveUserAsync(model.ToUser(user));
|
await _userService.SaveUserAsync(model.ToUser(user));
|
||||||
return new KeysResponseModel(user);
|
return new KeysResponseModel(user);
|
||||||
}
|
}
|
||||||
|
@ -109,6 +109,8 @@ public static class FeatureFlagKeys
|
|||||||
public const string Fido2VaultCredentials = "fido2-vault-credentials";
|
public const string Fido2VaultCredentials = "fido2-vault-credentials";
|
||||||
public const string VaultOnboarding = "vault-onboarding";
|
public const string VaultOnboarding = "vault-onboarding";
|
||||||
public const string BrowserFilelessImport = "browser-fileless-import";
|
public const string BrowserFilelessImport = "browser-fileless-import";
|
||||||
|
public const string ReturnErrorOnExistingKeypair = "return-error-on-existing-keypair";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deprecated - never used, do not use. Will always default to false. Will be deleted as part of Flexible Collections cleanup
|
/// Deprecated - never used, do not use. Will always default to false. Will be deleted as part of Flexible Collections cleanup
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user