diff --git a/client/src/app/site/pages/meetings/pages/motions/components/motion-multiselect/services/motion-multiselect.service.ts b/client/src/app/site/pages/meetings/pages/motions/components/motion-multiselect/services/motion-multiselect.service.ts index 67474644ff..9026c97b1b 100644 --- a/client/src/app/site/pages/meetings/pages/motions/components/motion-multiselect/services/motion-multiselect.service.ts +++ b/client/src/app/site/pages/meetings/pages/motions/components/motion-multiselect/services/motion-multiselect.service.ts @@ -7,7 +7,6 @@ import { Identifiable } from 'src/app/domain/interfaces'; import { Selectable } from 'src/app/domain/interfaces/selectable'; import { AgendaItemType } from 'src/app/domain/models/agenda/agenda-item'; import { Action } from 'src/app/gateways/actions'; -import { UserRepositoryService } from 'src/app/gateways/repositories/users'; import { SpinnerService } from 'src/app/site/modules/global-spinner'; import { ListOfSpeakersControllerService } from 'src/app/site/pages/meetings/pages/agenda/modules/list-of-speakers/services'; import { ModelRequestService } from 'src/app/site/services/model-request.service'; @@ -24,6 +23,7 @@ import { getParticipantMinimalSubscriptionConfig, PARTICIPANT_LIST_SUBSCRIPTION_MINIMAL } from '../../../../participants/participants.subscription'; +import { ParticipantControllerService } from '../../../../participants/services/common/participant-controller.service'; import { MotionCategoryControllerService } from '../../../modules/categories/services'; import { MotionBlockControllerService } from '../../../modules/motion-blocks/services'; import { PersonalNoteControllerService } from '../../../modules/personal-notes/services'; @@ -45,7 +45,7 @@ export class MotionMultiselectService { private translate: TranslateService, private promptService: PromptService, private choiceService: ChoiceService, - private userRepo: UserRepositoryService, + private userRepo: ParticipantControllerService, private workflowRepo: MotionWorkflowControllerService, private categoryRepo: MotionCategoryControllerService, private submitterRepo: MotionSubmitterControllerService, diff --git a/client/src/app/site/pages/meetings/pages/motions/motions.module.ts b/client/src/app/site/pages/meetings/pages/motions/motions.module.ts index 06b9270894..7212d32414 100644 --- a/client/src/app/site/pages/meetings/pages/motions/motions.module.ts +++ b/client/src/app/site/pages/meetings/pages/motions/motions.module.ts @@ -2,11 +2,12 @@ import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; +import { ParticipantCommonServiceModule } from '../participants/services/common/participant-common-service.module'; import { MotionMainComponent } from './components/motion-main/motion-main.component'; import { MotionsRoutingModule } from './motions-routing.module'; @NgModule({ declarations: [MotionMainComponent], - imports: [CommonModule, MotionsRoutingModule, RouterModule] + imports: [CommonModule, MotionsRoutingModule, RouterModule, ParticipantCommonServiceModule] }) export class MotionsModule {}