]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/account.model.ts
Implement avatar miniatures (#4639)
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
1 import { ActorImage } from './actor-image.model'
2 import { Actor } from './actor.model'
3
4 export interface Account extends Actor {
5 displayName: string
6 description: string
7 avatars: ActorImage[]
8
9 updatedAt: Date | string
10
11 userId?: number
12 }
13
14 export interface AccountSummary {
15 id: number
16 name: string
17 displayName: string
18 url: string
19 host: string
20
21 avatars: ActorImage[]
22
23 // TODO: remove, deprecated in 4.2
24 avatar: ActorImage
25 }