]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/actors/account.model.ts
Add avatar to prune script
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
index 5cc12c18fc789ddab91ae29e738b7d50b115de48..2ff4b9f5eaa494d9204fc355f2185cd7e413ef45 100644 (file)
@@ -1,5 +1,18 @@
 import { Actor } from './actor.model'
+import { Avatar } from '../avatars'
 
 export interface Account extends Actor {
   displayName: string
+  description: string
+
+  userId?: number
+}
+
+export interface AccountSummary {
+  id: number
+  name: string
+  displayName: string
+  url: string
+  host: string
+  avatar?: Avatar
 }