diff options
Diffstat (limited to 'shared/models')
-rw-r--r-- | shared/models/users/user-notification-setting.model.ts | 1 | ||||
-rw-r--r-- | shared/models/users/user-notification.model.ts | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shared/models/users/user-notification-setting.model.ts b/shared/models/users/user-notification-setting.model.ts index 57b33e4b8..e2a882b69 100644 --- a/shared/models/users/user-notification-setting.model.ts +++ b/shared/models/users/user-notification-setting.model.ts | |||
@@ -15,4 +15,5 @@ export interface UserNotificationSetting { | |||
15 | newUserRegistration: UserNotificationSettingValue | 15 | newUserRegistration: UserNotificationSettingValue |
16 | newFollow: UserNotificationSettingValue | 16 | newFollow: UserNotificationSettingValue |
17 | commentMention: UserNotificationSettingValue | 17 | commentMention: UserNotificationSettingValue |
18 | newInstanceFollower: UserNotificationSettingValue | ||
18 | } | 19 | } |
diff --git a/shared/models/users/user-notification.model.ts b/shared/models/users/user-notification.model.ts index 19892b61a..fafc2b7d7 100644 --- a/shared/models/users/user-notification.model.ts +++ b/shared/models/users/user-notification.model.ts | |||
@@ -1,3 +1,5 @@ | |||
1 | import { FollowState } from '../actors' | ||
2 | |||
1 | export enum UserNotificationType { | 3 | export enum UserNotificationType { |
2 | NEW_VIDEO_FROM_SUBSCRIPTION = 1, | 4 | NEW_VIDEO_FROM_SUBSCRIPTION = 1, |
3 | NEW_COMMENT_ON_MY_VIDEO = 2, | 5 | NEW_COMMENT_ON_MY_VIDEO = 2, |
@@ -15,7 +17,9 @@ export enum UserNotificationType { | |||
15 | NEW_FOLLOW = 10, | 17 | NEW_FOLLOW = 10, |
16 | COMMENT_MENTION = 11, | 18 | COMMENT_MENTION = 11, |
17 | 19 | ||
18 | VIDEO_AUTO_BLACKLIST_FOR_MODERATORS = 12 | 20 | VIDEO_AUTO_BLACKLIST_FOR_MODERATORS = 12, |
21 | |||
22 | NEW_INSTANCE_FOLLOWER = 13 | ||
19 | } | 23 | } |
20 | 24 | ||
21 | export interface VideoInfo { | 25 | export interface VideoInfo { |
@@ -73,6 +77,7 @@ export interface UserNotification { | |||
73 | actorFollow?: { | 77 | actorFollow?: { |
74 | id: number | 78 | id: number |
75 | follower: ActorInfo | 79 | follower: ActorInfo |
80 | state: FollowState | ||
76 | following: { | 81 | following: { |
77 | type: 'account' | 'channel' | 82 | type: 'account' | 'channel' |
78 | name: string | 83 | name: string |