Advertisement
rdsedmundo

Delete all files from Slack

Feb 27th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('#files_list').children().each(function () {
  2.   const file = $(this).data('file-id');
  3.  
  4.   TS.api.call(
  5.      'files.delete',
  6.      { file },
  7.      () => console.log('Deleted', file)
  8.   );
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement