aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/users/user-notification.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/users/user-notification.model.ts')
-rw-r--r--shared/models/users/user-notification.model.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/shared/models/users/user-notification.model.ts b/shared/models/users/user-notification.model.ts
index 5f7c33976..e2f2234e4 100644
--- a/shared/models/users/user-notification.model.ts
+++ b/shared/models/users/user-notification.model.ts
@@ -1,4 +1,5 @@
1import { FollowState } from '../actors' 1import { FollowState } from '../actors'
2import { AbuseState } from '../moderation'
2 3
3export enum UserNotificationType { 4export enum UserNotificationType {
4 NEW_VIDEO_FROM_SUBSCRIPTION = 1, 5 NEW_VIDEO_FROM_SUBSCRIPTION = 1,
@@ -21,7 +22,11 @@ export enum UserNotificationType {
21 22
22 NEW_INSTANCE_FOLLOWER = 13, 23 NEW_INSTANCE_FOLLOWER = 13,
23 24
24 AUTO_INSTANCE_FOLLOWING = 14 25 AUTO_INSTANCE_FOLLOWING = 14,
26
27 ABUSE_STATE_CHANGE = 15,
28
29 ABUSE_NEW_MESSAGE = 16
25} 30}
26 31
27export interface VideoInfo { 32export interface VideoInfo {
@@ -66,6 +71,7 @@ export interface UserNotification {
66 71
67 abuse?: { 72 abuse?: {
68 id: number 73 id: number
74 state: AbuseState
69 75
70 video?: VideoInfo 76 video?: VideoInfo
71 77