3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-14 22:05:01 +00:00

feat: first batch of emojis 🎉

This commit is contained in:
Lily Bergonzat 2024-02-14 09:17:11 +01:00
parent dfb0e2c19d
commit a4c4b17a14
91 changed files with 3659 additions and 2032 deletions

View file

@ -0,0 +1,15 @@
import { slashOptions } from "knub";
import { actualMassUnbanCmd } from "../../functions/actualCommands/actualMassUnbanCmd";
export const MassUnbanSlashCmd = {
name: "massunban",
configPermission: "can_massunban",
description: "Mass-unban a list of user IDs",
allowDms: false,
signature: [slashOptions.string({ name: "user-ids", description: "The list of user IDs to unban", required: true })],
async run({ interaction, options, pluginData }) {
actualMassUnbanCmd(pluginData, interaction, options["user-ids"].split(/[\s,\r\n]+/), interaction.member);
},
};