#315 - export all follows as CSV
This commit is contained in:
parent
6a867f6ae3
commit
2f12ac7ea4
3 changed files with 10 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue