1
0
mirror of https://github.com/bitwarden/server synced 2025-12-28 22:23:30 +00:00

fixup playIdService dependencies

This commit is contained in:
Matt Gibson
2025-11-18 10:02:12 -08:00
parent ccc89e7268
commit 54e4c7e66d

View File

@@ -26,9 +26,7 @@ public class OrganizationRepository : Repository<Core.AdminConsole.Entities.Orga
public OrganizationRepository(
IServiceScopeFactory serviceScopeFactory,
IMapper mapper,
ILogger<OrganizationRepository> logger,
IPlayIdService playIdService,
IPlayDataRepository playDataRepository)
ILogger<OrganizationRepository> logger)
: base(serviceScopeFactory, mapper, context => context.Organizations)
{
_logger = logger;
@@ -454,7 +452,7 @@ public class TestOrganizationTrackingOrganizationRepository : OrganizationReposi
ILogger<OrganizationRepository> logger,
IPlayIdService playIdService,
IPlayDataRepository playDataRepository)
: base(serviceScopeFactory, mapper, logger, playIdService, playDataRepository)
: base(serviceScopeFactory, mapper, logger)
{
_playIdService = playIdService;
_playDataRepository = playDataRepository;