X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Factors%2Faccount.model.ts;h=60f4236d5e3558fe40298bb5bba0ed1d2d547b68;hb=d0800f7661f13fabe7bb6f4aa0ea50764f106405;hp=f2138077e682b44bd82d6dcf50909d70473c24c4;hpb=5cad2ca9db9b9d138f8a33058d10b94a9fd50c69;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/actors/account.model.ts b/shared/models/actors/account.model.ts index f2138077e..60f4236d5 100644 --- a/shared/models/actors/account.model.ts +++ b/shared/models/actors/account.model.ts @@ -4,6 +4,7 @@ import { Actor } from './actor.model' export interface Account extends Actor { displayName: string description: string + avatars: ActorImage[] updatedAt: Date | string @@ -16,5 +17,9 @@ export interface AccountSummary { displayName: string url: string host: string - avatar?: ActorImage + + avatars: ActorImage[] + + // TODO: remove, deprecated in 4.2 + avatar: ActorImage }