#315 - export all follows as CSV
1 unresolved thread
1 unresolved thread
Issue #315 (closed)
Export to csv to return all Follows
, not the paginated result.
Merge request reports
Activity
Back-end MR needs to be handled prior to this one.
247 247 .then((data) => parseUser(data)) 248 248 } 249 249 250 const fetchFriends = ({id, page, credentials}) => { 250 const fetchFriends = ({id, page, isExport, credentials}) => { 251 251 let url = `${FRIENDS_URL}?user_id=${id}` 252 252 if (page) { 253 253 url = url + `&page=${page}` 254 254 } 255 if (isExport !== undefined) { changed this line in version 2 of the diff
@shpuld you are right. Before the back-end work, I tried to send true/false always. But since there's default value on the BE, we don't need to send
false
anymore. I will update the PR.shoot i just thought to search for existing MRs before making my own
i just made !545 (closed) which just deals with the pagination entirely on the frontend
mentioned in merge request !545 (closed)
- Resolved by Shpuld Shpludson
added 1 commit
- 31284171 - #315 (closed) - separate export and fetch follows logic
mentioned in commit 05ef0432
Please register or sign in to reply