From 7cf991d67271de33825f37c5d0703279d22fd0df Mon Sep 17 00:00:00 2001 From: Kim Gardner Date: Fri, 4 May 2018 17:03:22 -0400 Subject: [PATCH] Change copy --- plugins/talk-plugin-profile-data/server/router.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/plugins/talk-plugin-profile-data/server/router.js b/plugins/talk-plugin-profile-data/server/router.js index 2a2e0161a..6d8f47d03 100644 --- a/plugins/talk-plugin-profile-data/server/router.js +++ b/plugins/talk-plugin-profile-data/server/router.js @@ -71,9 +71,15 @@ async function loadComments(ctx, userID, archive, latestContentDate) { const csv = stringify(); // Add all the streams as files to the archive. - archive.append(csv, { name: 'talk-export/my_comments.csv' }); + archive.append(csv, { name: 'comments-export/my_comments.csv' }); - csv.write(['ID', 'Timestamp', 'Article', 'Link', 'Body']); + csv.write([ + 'Comment ID', + 'Published Timestamp', + 'Article URL', + 'Comment Link', + 'Comment Text', + ]); // Load the first batch's comments from the latest date that we were provided // from the token.