aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models')
-rw-r--r--shared/models/moderation/abuse/abuse.model.ts4
-rw-r--r--shared/models/users/user-notification.model.ts2
2 files changed, 4 insertions, 2 deletions
diff --git a/shared/models/moderation/abuse/abuse.model.ts b/shared/models/moderation/abuse/abuse.model.ts
index 74798ab2c..0a0c6bd35 100644
--- a/shared/models/moderation/abuse/abuse.model.ts
+++ b/shared/models/moderation/abuse/abuse.model.ts
@@ -62,9 +62,9 @@ export interface Abuse {
62 // FIXME: deprecated in 2.3, remove the following properties 62 // FIXME: deprecated in 2.3, remove the following properties
63 63
64 // @deprecated 64 // @deprecated
65 startAt: null 65 startAt?: null
66 // @deprecated 66 // @deprecated
67 endAt: null 67 endAt?: null
68 68
69 // @deprecated 69 // @deprecated
70 count?: number 70 count?: number
diff --git a/shared/models/users/user-notification.model.ts b/shared/models/users/user-notification.model.ts
index 11d96fd50..5f7c33976 100644
--- a/shared/models/users/user-notification.model.ts
+++ b/shared/models/users/user-notification.model.ts
@@ -73,7 +73,9 @@ export interface UserNotification {
73 threadId: number 73 threadId: number
74 74
75 video: { 75 video: {
76 id: number
76 uuid: string 77 uuid: string
78 name: string
77 } 79 }
78 } 80 }
79 81