1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-28 06:36:15 -05:00

remove IReferenceEventService

This commit is contained in:
Brandon 2025-06-03 11:02:49 -04:00
parent 5a7806740e
commit 7db1129bbd
No known key found for this signature in database
GPG Key ID: A0E0EF0B207BA40D

View File

@ -15,9 +15,6 @@ using Bit.Core.Models.Data.Organizations;
using Bit.Core.Models.Data.Organizations.OrganizationUsers; using Bit.Core.Models.Data.Organizations.OrganizationUsers;
using Bit.Core.Repositories; using Bit.Core.Repositories;
using Bit.Core.Services; using Bit.Core.Services;
using Bit.Core.Tools.Enums;
using Bit.Core.Tools.Models.Business;
using Bit.Core.Tools.Services;
namespace Bit.Core.AdminConsole.OrganizationFeatures.OrganizationUsers; namespace Bit.Core.AdminConsole.OrganizationFeatures.OrganizationUsers;
@ -28,7 +25,6 @@ public class ImportOrganizationUserCommand : IImportOrganizationUserCommand
private readonly IPaymentService _paymentService; private readonly IPaymentService _paymentService;
private readonly IGroupRepository _groupRepository; private readonly IGroupRepository _groupRepository;
private readonly IEventService _eventService; private readonly IEventService _eventService;
private readonly IReferenceEventService _referenceEventService;
private readonly ICurrentContext _currentContext; private readonly ICurrentContext _currentContext;
private readonly IOrganizationService _organizationService; private readonly IOrganizationService _organizationService;
private readonly IInviteOrganizationUsersCommand _inviteOrganizationUsersCommand; private readonly IInviteOrganizationUsersCommand _inviteOrganizationUsersCommand;
@ -41,7 +37,6 @@ public class ImportOrganizationUserCommand : IImportOrganizationUserCommand
IPaymentService paymentService, IPaymentService paymentService,
IGroupRepository groupRepository, IGroupRepository groupRepository,
IEventService eventService, IEventService eventService,
IReferenceEventService referenceEventService,
ICurrentContext currentContext, ICurrentContext currentContext,
IOrganizationService organizationService, IOrganizationService organizationService,
IInviteOrganizationUsersCommand inviteOrganizationUsersCommand, IInviteOrganizationUsersCommand inviteOrganizationUsersCommand,
@ -53,7 +48,6 @@ public class ImportOrganizationUserCommand : IImportOrganizationUserCommand
_paymentService = paymentService; _paymentService = paymentService;
_groupRepository = groupRepository; _groupRepository = groupRepository;
_eventService = eventService; _eventService = eventService;
_referenceEventService = referenceEventService;
_currentContext = currentContext; _currentContext = currentContext;
_organizationService = organizationService; _organizationService = organizationService;
_inviteOrganizationUsersCommand = inviteOrganizationUsersCommand; _inviteOrganizationUsersCommand = inviteOrganizationUsersCommand;
@ -103,9 +97,6 @@ public class ImportOrganizationUserCommand : IImportOrganizationUserCommand
await ImportGroups(organization, groups, importUserData); await ImportGroups(organization, groups, importUserData);
await _eventService.LogOrganizationUserEventsAsync(events.Select(e => (e.ou, e.e, _EventSystemUser, e.d))); await _eventService.LogOrganizationUserEventsAsync(events.Select(e => (e.ou, e.e, _EventSystemUser, e.d)));
await _referenceEventService.RaiseEventAsync(
new ReferenceEvent(ReferenceEventType.DirectorySynced, organization, _currentContext));
} }
private async Task UpdateUsersAsync(Group group, HashSet<string> groupUsers, private async Task UpdateUsersAsync(Group group, HashSet<string> groupUsers,