aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/following-list/following-list.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin/follows/following-list/following-list.component.ts')
-rw-r--r--client/src/app/+admin/follows/following-list/following-list.component.ts14
1 files changed, 6 insertions, 8 deletions
diff --git a/client/src/app/+admin/follows/following-list/following-list.component.ts b/client/src/app/+admin/follows/following-list/following-list.component.ts
index 6ddbf02d6..dae8923b5 100644
--- a/client/src/app/+admin/follows/following-list/following-list.component.ts
+++ b/client/src/app/+admin/follows/following-list/following-list.component.ts
@@ -1,12 +1,10 @@
1import { Component, OnInit, ViewChild } from '@angular/core'
2import { Notifier } from '@app/core'
3import { SortMeta } from 'primeng/api' 1import { SortMeta } from 'primeng/api'
4import { ActorFollow } from '../../../../../../shared/models/actors/follow.model' 2import { Component, OnInit, ViewChild } from '@angular/core'
5import { ConfirmService } from '../../../core/confirm/confirm.service' 3import { ConfirmService, Notifier, RestPagination, RestTable } from '@app/core'
6import { RestPagination, RestTable } from '../../../shared' 4import { InstanceFollowService } from '@app/shared/shared-instance'
7import { FollowService } from '@app/shared/instance/follow.service' 5import { BatchDomainsModalComponent } from '@app/shared/shared-moderation'
8import { I18n } from '@ngx-translate/i18n-polyfill' 6import { I18n } from '@ngx-translate/i18n-polyfill'
9import { BatchDomainsModalComponent } from '@app/+admin/config/shared/batch-domains-modal.component' 7import { ActorFollow } from '@shared/models'
10 8
11@Component({ 9@Component({
12 selector: 'my-followers-list', 10 selector: 'my-followers-list',
@@ -24,7 +22,7 @@ export class FollowingListComponent extends RestTable implements OnInit {
24 constructor ( 22 constructor (
25 private notifier: Notifier, 23 private notifier: Notifier,
26 private confirmService: ConfirmService, 24 private confirmService: ConfirmService,
27 private followService: FollowService, 25 private followService: InstanceFollowService,
28 private i18n: I18n 26 private i18n: I18n
29 ) { 27 ) {
30 super() 28 super()