]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+admin/follows/following-list/following-list.component.ts
Rename Pod -> Server
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / follows / following-list / following-list.component.ts
index 7d2c5084b344b6f7e822d8deb30f8f302ea92347..a1dff1db3cef288ca4ebb99903a05e24a7bda65d 100644 (file)
@@ -1,11 +1,8 @@
-import { Component, OnInit } from '@angular/core'
-
+import { Component } from '@angular/core'
 import { NotificationsService } from 'angular2-notifications'
 import { SortMeta } from 'primeng/primeng'
-
-import { ConfirmService } from '../../../core'
-import { RestTable, RestPagination } from '../../../shared'
-import { Pod } from '../../../../../../shared'
+import { AccountFollow } from '../../../../../../shared/models/accounts/follow.model'
+import { RestPagination, RestTable } from '../../../shared'
 import { FollowService } from '../shared'
 
 @Component({
@@ -13,7 +10,7 @@ import { FollowService } from '../shared'
   templateUrl: './following-list.component.html'
 })
 export class FollowingListComponent extends RestTable {
-  following: Pod[] = []
+  following: AccountFollow[] = []
   totalRecords = 0
   rowsPerPage = 10
   sort: SortMeta = { field: 'createdAt', order: 1 }