]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/actors/account.model.ts
Add scores to follows and remove bad ones
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
index e4dbc81e5a8d9385d3a91f4b8531ca67c24c389c..5cc12c18fc789ddab91ae29e738b7d50b115de48 100644 (file)
@@ -1,15 +1,5 @@
-import { Avatar } from '../avatars/avatar.model'
+import { Actor } from './actor.model'
 
-export interface Account {
-  id: number
-  uuid: string
-  url: string
-  name: string
+export interface Account extends Actor {
   displayName: string
-  host: string
-  followingCount: number
-  followersCount: number
-  createdAt: Date
-  updatedAt: Date
-  avatar: Avatar
 }