Reset feeds on login

zio/stable
Paul Frazee 2022-12-14 15:49:38 -06:00
parent 9f27af6199
commit 7181a75bfb
1 changed files with 4 additions and 0 deletions

View File

@ -95,6 +95,10 @@ export class MeModel {
this.avatar = ''
}
})
this.mainFeed = new FeedModel(this.rootStore, 'home', {
algorithm: 'reverse-chronological',
})
this.notifications = new NotificationsViewModel(this.rootStore, {})
this.memberships = new MembershipsViewModel(this.rootStore, {
actor: this.did,
})