1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-15 01:41:40 +01:00

Fix build

This commit is contained in:
Bernd Schoolmann 2025-01-01 17:29:42 +01:00
parent 22404638d2
commit 11eb9fae3a
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@
using Bit.Core.Entities;
using Microsoft.AspNetCore.Identity;
namespace Bit.Core.Auth.UserFeatures.UserKey;
namespace Bit.Core.KeyManagement.UserKey;
/// <summary>
/// Responsible for rotation of a user key and updating database with re-encrypted data

View File

@ -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;
/// <inheritdoc />
public class RotateUserAccountKeysCommand : IRotateUserAccountKeysCommand