Added follow requests to notifications page

• Added:
- follow requests to notifications

• Updated:
- ui.js will mount to listen for path for follow_requests to set filter
- notification action expandNotifications to not request if filter is follow_request
- order of notification_filters
- AccountAuthorize
- FollowRequest page
This commit is contained in:
mgabdev
2020-06-07 13:27:08 -04:00
parent 3bea8213ce
commit 66fc8269cc
10 changed files with 166 additions and 224 deletions

View File

@@ -153,7 +153,7 @@ export function expandNotifications({ maxId } = {}, done = noOp) {
const notifications = getState().get('notifications')
const isLoadingMore = !!maxId
if (notifications.get('isLoading')) {
if (notifications.get('isLoading') || activeFilter === 'follow_requests') {
done();
return;
}