diff --git a/src/Core/Auth/UserFeatures/UserKey/IRotateUserAccountKeysCommand.cs b/src/Core/KeyManagement/UserKey/IRotateUserAccountKeysCommand.cs similarity index 94% rename from src/Core/Auth/UserFeatures/UserKey/IRotateUserAccountKeysCommand.cs rename to src/Core/KeyManagement/UserKey/IRotateUserAccountKeysCommand.cs index 373be721e..b4b71e033 100644 --- a/src/Core/Auth/UserFeatures/UserKey/IRotateUserAccountKeysCommand.cs +++ b/src/Core/KeyManagement/UserKey/IRotateUserAccountKeysCommand.cs @@ -2,7 +2,7 @@ using Bit.Core.Entities; using Microsoft.AspNetCore.Identity; -namespace Bit.Core.Auth.UserFeatures.UserKey; +namespace Bit.Core.KeyManagement.UserKey; /// /// Responsible for rotation of a user key and updating database with re-encrypted data diff --git a/src/Core/Auth/UserFeatures/UserKey/Implementations/RotateUserAccountkeysCommand.cs b/src/Core/KeyManagement/UserKey/Implementations/RotateUserAccountkeysCommand.cs similarity index 98% rename from src/Core/Auth/UserFeatures/UserKey/Implementations/RotateUserAccountkeysCommand.cs rename to src/Core/KeyManagement/UserKey/Implementations/RotateUserAccountkeysCommand.cs index e03aad0e6..cf1273e22 100644 --- a/src/Core/Auth/UserFeatures/UserKey/Implementations/RotateUserAccountkeysCommand.cs +++ b/src/Core/KeyManagement/UserKey/Implementations/RotateUserAccountkeysCommand.cs @@ -6,8 +6,9 @@ using Bit.Core.Services; using Bit.Core.Tools.Repositories; using Bit.Core.Vault.Repositories; using Microsoft.AspNetCore.Identity; +using Bit.Core.KeyManagement.UserKey; -namespace Bit.Core.Auth.UserFeatures.UserKey.Implementations; +namespace Bit.Core.KeyManagement.UserKey.Implementations; /// public class RotateUserAccountKeysCommand : IRotateUserAccountKeysCommand