]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/actors/account.model.ts
Add audit logs for video import
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
index e4dbc81e5a8d9385d3a91f4b8531ca67c24c389c..e1117486dd9e55f2d5b5f99bd73ed2c58ff7dbde 100644 (file)
@@ -1,15 +1,6 @@
-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
+  description: string
 }