#315 - export all follows as CSV

This commit is contained in:
dave 2019-02-06 11:17:23 -05:00
parent 6a867f6ae3
commit 2f12ac7ea4
3 changed files with 10 additions and 4 deletions

View file

@ -238,7 +238,10 @@ const UserSettings = {
exportFollows () {
this.enableFollowsExport = false
this.$store.state.api.backendInteractor
.fetchFriends({id: this.$store.state.users.currentUser.id})
.fetchFriends({
id: this.$store.state.users.currentUser.id,
isExport: true
})
.then((friendList) => {
this.exportPeople(friendList, 'friends.csv')
setTimeout(() => { this.enableFollowsExport = true }, 2000)