Add notification on new instance follower (server side)

This commit is contained in:
Chocobozzz 2019-04-08 17:26:01 +02:00
parent 0dc6477758
commit 883993c81e
No known key found for this signature in database
GPG key ID: 583A612D890159BE
19 changed files with 212 additions and 21 deletions

View file

@ -28,8 +28,22 @@ const updateNotificationSettingsValidator = [
.custom(isUserNotificationSettingValid).withMessage('Should have a valid new comment on my video notification setting'),
body('videoAbuseAsModerator')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid new video abuse as moderator notification setting'),
body('videoAutoBlacklistAsModerator')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid video auto blacklist notification setting'),
body('blacklistOnMyVideo')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid new blacklist on my video notification setting'),
body('myVideoImportFinished')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid video import finished video notification setting'),
body('myVideoPublished')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid video published notification setting'),
body('commentMention')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid comment mention notification setting'),
body('newFollow')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid new follow notification setting'),
body('newUserRegistration')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid new user registration notification setting'),
body('newInstanceFollower')
.custom(isUserNotificationSettingValid).withMessage('Should have a valid new instance follower notification setting'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking updateNotificationSettingsValidator parameters', { parameters: req.body })