./projects/dgg-untagall-command
← back

dgg /untagall command

A merged contribution to chat-gui, the open-source chat client behind a growing streaming platform: a `/untagall` command that clears every user you've tagged in one shot, guarded by a y/yes confirmation.

A merged contribution to chat-gui, the open-source chat client behind destiny.gg: a new /untagall command that clears every user you've tagged in one shot.

View the merged PR →

What it does

  • Clears your entire list of tagged nicks/users at once — no more removing them one by one.
  • Guards against accidents with a confirmation step: /untagall prints a warning, and you confirm with /untagall y (or yes), mirroring the chat's existing /unignoreall command.
  • Registered in CHAT_COMMANDS, so it shows up in /help and tab-autocomplete like any first-class command.

Details

The change touches two files — assets/chat/js/chat.js and assets/chat/js/commands.js — adding the command handler and its registration (+39 lines). Tested in the client's mock mode with npm test passing.

View the merged PR →