]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/actors/account.model.ts
Merge branch 'feature/correctly-send-activities' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
index e4dbc81e5a8d9385d3a91f4b8531ca67c24c389c..7f1dbbc37755e0392201da5219a40f19bda25e44 100644 (file)
@@ -1,15 +1,8 @@
-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
+
+  userId?: number
 }