From 7dc935c6de06be874dd03d7b9e24790206f16952 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Sun, 9 Mar 2025 16:33:05 -0700 Subject: [PATCH] Send site report on kick action --- src/components/ProfileModal.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/components/ProfileModal.vue b/src/components/ProfileModal.vue index cc62ad8..1a3bdc5 100644 --- a/src/components/ProfileModal.vue +++ b/src/components/ProfileModal.vue @@ -180,6 +180,19 @@ export default { title: "Kick User", }).then(() => { this.$emit('send-command', `/kick ${this.user.username}`); + + // Also send an admin report to the main website. + this.$emit('report', { + message: { + channel: `n/a`, + username: this.user.username, + at: new Date(), + message: 'User kicked from chat by an admin', + }, + classification: 'User kicked by admin', + comment: `The chat admin @${this.username} has kicked ${this.user.username} from the room!`, + }); + this.cancel(); }); },