From d2bff5ca0ab70a755cde5dfc3b79e1c5c39a9715 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 18 Mar 2025 16:55:34 +0100 Subject: [PATCH] Attempt to fix error --- .../OpaqueKeyExchangeCredentialRepository.cs | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/Infrastructure.EntityFramework/Auth/Repositories/OpaqueKeyExchangeCredentialRepository.cs b/src/Infrastructure.EntityFramework/Auth/Repositories/OpaqueKeyExchangeCredentialRepository.cs index 55740041f9..51ba304e3e 100644 --- a/src/Infrastructure.EntityFramework/Auth/Repositories/OpaqueKeyExchangeCredentialRepository.cs +++ b/src/Infrastructure.EntityFramework/Auth/Repositories/OpaqueKeyExchangeCredentialRepository.cs @@ -3,19 +3,22 @@ using Bit.Core.Auth.Entities; using Bit.Core.Auth.Models.Data; using Bit.Core.Auth.Repositories; using Bit.Core.KeyManagement.UserKey; -using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; -#nullable enable - namespace Bit.Infrastructure.EntityFramework.Repositories; public class OpaqueKeyExchangeCredentialRepository : Repository, IOpaqueKeyExchangeCredentialRepository { - public OpaqueKeyExchangeCredentialRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper, Func> getDbSet) : base(serviceScopeFactory, mapper, getDbSet) + public OpaqueKeyExchangeCredentialRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper) : base(serviceScopeFactory, mapper, (DatabaseContext context) => null) { } - public Task GetByUserIdAsync(Guid userId) => throw new NotImplementedException(); - public UpdateEncryptedDataForKeyRotation UpdateKeysForRotationAsync(Guid userId, IEnumerable credentials) => throw new NotImplementedException(); + public Task GetByUserIdAsync(Guid userId) + { + return null; + } + public UpdateEncryptedDataForKeyRotation UpdateKeysForRotationAsync(Guid userId, IEnumerable credentials) + { + return null; + } }