You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There does exist partial support for this that could be expanded.
interfaceIDeleteData{ids: string[],}asynconDelete(socket: socketio.Socket,data: IDeleteData){// Check if adminif(!verifyAdmin(socket))return;// Verify we need to actually do somethingif(!(data.ids?.length>0))return;// Log command usagelogger.adminCommand(`${getSocketUsername(socket)} Deleted:`,data);// Remove messageawaitchat.deleteMessage(data.ids);}
It would be a good option to delete a message in the chat, but there is no option to delete, please add an option.
The text was updated successfully, but these errors were encountered: