This commit is contained in:
kakkokari-gtyih 2024-11-07 11:19:29 +09:00
parent 6da983385d
commit 48c482f77c

View file

@ -47,6 +47,7 @@ import { NoteDeleteService } from './NoteDeleteService.js';
import { NotePiningService } from './NotePiningService.js'; import { NotePiningService } from './NotePiningService.js';
import { NoteReadService } from './NoteReadService.js'; import { NoteReadService } from './NoteReadService.js';
import { NotificationService } from './NotificationService.js'; import { NotificationService } from './NotificationService.js';
import { PageService } from './PageService.js';
import { PollService } from './PollService.js'; import { PollService } from './PollService.js';
import { PushNotificationService } from './PushNotificationService.js'; import { PushNotificationService } from './PushNotificationService.js';
import { QueryService } from './QueryService.js'; import { QueryService } from './QueryService.js';
@ -190,6 +191,7 @@ const $NoteDeleteService: Provider = { provide: 'NoteDeleteService', useExisting
const $NotePiningService: Provider = { provide: 'NotePiningService', useExisting: NotePiningService }; const $NotePiningService: Provider = { provide: 'NotePiningService', useExisting: NotePiningService };
const $NoteReadService: Provider = { provide: 'NoteReadService', useExisting: NoteReadService }; const $NoteReadService: Provider = { provide: 'NoteReadService', useExisting: NoteReadService };
const $NotificationService: Provider = { provide: 'NotificationService', useExisting: NotificationService }; const $NotificationService: Provider = { provide: 'NotificationService', useExisting: NotificationService };
const $PageService: Provider = { provide: 'PageService', useExisting: PageService };
const $PollService: Provider = { provide: 'PollService', useExisting: PollService }; const $PollService: Provider = { provide: 'PollService', useExisting: PollService };
const $ProxyAccountService: Provider = { provide: 'ProxyAccountService', useExisting: ProxyAccountService }; const $ProxyAccountService: Provider = { provide: 'ProxyAccountService', useExisting: ProxyAccountService };
const $PushNotificationService: Provider = { provide: 'PushNotificationService', useExisting: PushNotificationService }; const $PushNotificationService: Provider = { provide: 'PushNotificationService', useExisting: PushNotificationService };
@ -341,6 +343,7 @@ const $ApQuestionService: Provider = { provide: 'ApQuestionService', useExisting
NotePiningService, NotePiningService,
NoteReadService, NoteReadService,
NotificationService, NotificationService,
PageService,
PollService, PollService,
ProxyAccountService, ProxyAccountService,
PushNotificationService, PushNotificationService,
@ -488,6 +491,7 @@ const $ApQuestionService: Provider = { provide: 'ApQuestionService', useExisting
$NotePiningService, $NotePiningService,
$NoteReadService, $NoteReadService,
$NotificationService, $NotificationService,
$PageService,
$PollService, $PollService,
$ProxyAccountService, $ProxyAccountService,
$PushNotificationService, $PushNotificationService,
@ -636,6 +640,7 @@ const $ApQuestionService: Provider = { provide: 'ApQuestionService', useExisting
NotePiningService, NotePiningService,
NoteReadService, NoteReadService,
NotificationService, NotificationService,
PageService,
PollService, PollService,
ProxyAccountService, ProxyAccountService,
PushNotificationService, PushNotificationService,
@ -782,6 +787,7 @@ const $ApQuestionService: Provider = { provide: 'ApQuestionService', useExisting
$NotePiningService, $NotePiningService,
$NoteReadService, $NoteReadService,
$NotificationService, $NotificationService,
$PageService,
$PollService, $PollService,
$ProxyAccountService, $ProxyAccountService,
$PushNotificationService, $PushNotificationService,