Skip to content

Instantly share code, notes, and snippets.

@neutraltone
Created July 3, 2018 12:37
Show Gist options
  • Save neutraltone/497fcb56e94b4b850488e6fe023bfa40 to your computer and use it in GitHub Desktop.
Save neutraltone/497fcb56e94b4b850488e6fe023bfa40 to your computer and use it in GitHub Desktop.
Deactivate slack user accounts
setTimeout(function () {
var inactiveAccounts = document.querySelectorAll('#active_members .admin_list_item.active.inactive');
var toDeactivate = inactiveAccounts[0];
$(toDeactivate).trigger('mouseover');
toDeactivate.click()
toDeactivate.querySelector(".api_disable_account.sub_action").click()
}, 60000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment