Add view for moves notifications

This commit is contained in:
kPherox 2019-12-11 00:00:10 +09:00
parent 2bc63720a5
commit 6af870cd90
No known key found for this signature in database
GPG key ID: C04751C2BFA2F62D
9 changed files with 39 additions and 6 deletions

View file

@ -66,7 +66,8 @@ const visibleNotificationTypes = (rootState) => {
rootState.config.notificationVisibility.likes && 'like',
rootState.config.notificationVisibility.mentions && 'mention',
rootState.config.notificationVisibility.repeats && 'repeat',
rootState.config.notificationVisibility.follows && 'follow'
rootState.config.notificationVisibility.follows && 'follow',
rootState.config.notificationVisibility.moves && 'move'
].filter(_ => _)
}