aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/users
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/users')
-rw-r--r--shared/models/users/user-notification.model.ts11
1 files changed, 8 insertions, 3 deletions
diff --git a/shared/models/users/user-notification.model.ts b/shared/models/users/user-notification.model.ts
index 5820589fe..a2621fb5b 100644
--- a/shared/models/users/user-notification.model.ts
+++ b/shared/models/users/user-notification.model.ts
@@ -40,14 +40,19 @@ export interface VideoInfo {
40 name: string 40 name: string
41} 41}
42 42
43export interface AvatarInfo {
44 width: number
45 path: string
46}
47
43export interface ActorInfo { 48export interface ActorInfo {
44 id: number 49 id: number
45 displayName: string 50 displayName: string
46 name: string 51 name: string
47 host: string 52 host: string
48 avatar?: { 53
49 path: string 54 avatars: AvatarInfo[]
50 } 55 avatar: AvatarInfo
51} 56}
52 57
53export interface UserNotification { 58export interface UserNotification {