X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fusers%2Fuser-notification.model.ts;h=a2621fb5bc7c050712baba91688e072f23b11320;hb=d0800f7661f13fabe7bb6f4aa0ea50764f106405;hp=8b33e3fbdab30d66a90719ba315a0ea06ff68bc5;hpb=32a18cbf33a7cdbbe3d4885d32e4b67e19cdc1cf;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/users/user-notification.model.ts b/shared/models/users/user-notification.model.ts index 8b33e3fbd..a2621fb5b 100644 --- a/shared/models/users/user-notification.model.ts +++ b/shared/models/users/user-notification.model.ts @@ -36,17 +36,23 @@ export const enum UserNotificationType { export interface VideoInfo { id: number uuid: string + shortUUID: string name: string } +export interface AvatarInfo { + width: number + path: string +} + export interface ActorInfo { id: number displayName: string name: string host: string - avatar?: { - path: string - } + + avatars: AvatarInfo[] + avatar: AvatarInfo } export interface UserNotification { @@ -82,11 +88,7 @@ export interface UserNotification { comment?: { threadId: number - video: { - id: number - uuid: string - name: string - } + video: VideoInfo } account?: ActorInfo