feat(music): add a stop command

Clears the whole queue and disconnects, mirrors the existing Stop
Manager function, just wires it up to the outbox like every other
dashboard command.
This commit is contained in:
2026-08-29 19:48:43 +01:00
parent da66eb8dd5
commit 52dfe859ee
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -64,6 +64,9 @@ func dispatchCommand(cmd musicrepo.MusicCommand) error {
case "resume":
return Pause(guildID, false)
case "stop":
return Stop(guildID)
case "set_volume":
var payload struct {
Volume int `json:"volume"`