From 11eb9fae3ad972c21cf2f7d8a2dc33f79d9d2369 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Wed, 1 Jan 2025 17:29:42 +0100 Subject: [PATCH] Fix build --- .../UserKey/IRotateUserAccountKeysCommand.cs | 2 +- .../UserKey/Implementations/RotateUserAccountkeysCommand.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) rename src/Core/{Auth/UserFeatures => KeyManagement}/UserKey/IRotateUserAccountKeysCommand.cs (94%) rename src/Core/{Auth/UserFeatures => KeyManagement}/UserKey/Implementations/RotateUserAccountkeysCommand.cs (98%) 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