Add new notification filter api params

This commit is contained in:
infinite-persistence 2021-03-24 15:26:56 +08:00 committed by Sean Yesmunt
parent fbd90b8f3e
commit 4252db91f9

View file

@ -4,3 +4,10 @@ export const NOTIFICATION_REPLY = 'comment-reply';
export const DAILY_WATCH_AVAILABLE = 'daily_watch_available';
export const DAILY_WATCH_REMIND = 'daily_watch_remind';
export const NEW_CONTENT = 'new_content';
export const NOTIFICATION_RULE_NONE = '';
export const NOTIFICATION_RULE_COMMENTS = 'comments';
export const NOTIFICATION_RULE_REPLIES = 'comment_replies';
export const NOTIFICATION_RULE_FOLLOWERS = 'followers';
export const NOTIFICATION_RULE_NEW_CONTENT = 'new_content';
export const NOTIFICATION_RULE_OTHERS = 'default';