X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fusers%2Fuser-notification.model.ts;h=0fd7a7181bca331309cae796e04b1dce8e9f505a;hb=b211106695bb82f6c32e53306081b5262c3d109d;hp=5820589fe8a999fe7395288007af1412cba0b0e1;hpb=171efc48e67498406feb6d7873b3482b41505515;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/users/user-notification.model.ts b/shared/models/users/user-notification.model.ts index 5820589fe..0fd7a7181 100644 --- a/shared/models/users/user-notification.model.ts +++ b/shared/models/users/user-notification.model.ts @@ -30,7 +30,9 @@ export const enum UserNotificationType { ABUSE_NEW_MESSAGE = 16, NEW_PLUGIN_VERSION = 17, - NEW_PEERTUBE_VERSION = 18 + NEW_PEERTUBE_VERSION = 18, + + MY_VIDEO_STUDIO_EDITION_FINISHED = 19 } export interface VideoInfo { @@ -40,14 +42,19 @@ export interface VideoInfo { 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 {