aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/followers-list/followers-list.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin/follows/followers-list/followers-list.component.ts')
-rw-r--r--client/src/app/+admin/follows/followers-list/followers-list.component.ts11
1 files changed, 5 insertions, 6 deletions
diff --git a/client/src/app/+admin/follows/followers-list/followers-list.component.ts b/client/src/app/+admin/follows/followers-list/followers-list.component.ts
index 17352a601..63135f898 100644
--- a/client/src/app/+admin/follows/followers-list/followers-list.component.ts
+++ b/client/src/app/+admin/follows/followers-list/followers-list.component.ts
@@ -1,10 +1,9 @@
1import { Component, OnInit } from '@angular/core'
2import { ConfirmService, 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 } from '@angular/core'
5import { RestPagination, RestTable } from '../../../shared' 3import { ConfirmService, Notifier, RestPagination, RestTable } from '@app/core'
6import { FollowService } from '@app/shared/instance/follow.service' 4import { InstanceFollowService } from '@app/shared/shared-instance'
7import { I18n } from '@ngx-translate/i18n-polyfill' 5import { I18n } from '@ngx-translate/i18n-polyfill'
6import { ActorFollow } from '@shared/models'
8 7
9@Component({ 8@Component({
10 selector: 'my-followers-list', 9 selector: 'my-followers-list',
@@ -21,7 +20,7 @@ export class FollowersListComponent extends RestTable implements OnInit {
21 private confirmService: ConfirmService, 20 private confirmService: ConfirmService,
22 private notifier: Notifier, 21 private notifier: Notifier,
23 private i18n: I18n, 22 private i18n: I18n,
24 private followService: FollowService 23 private followService: InstanceFollowService
25 ) { 24 ) {
26 super() 25 super()
27 } 26 }