-
Notifications
You must be signed in to change notification settings - Fork 0
/
command.js
39 lines (34 loc) · 950 Bytes
/
command.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { REST, Routes } from "discord.js";
import dotenv from "dotenv";
dotenv.config();
const commands = [
{
name: "ping",
description: "Replies with Pong!",
},
{
name: 'clean-reactions',
description: 'Cleans up reactions in a specific channel based on user roles',
defaultPermission: false, // This command is restricted to certain roles
options: [
{
type: 7, // Channel type
name: 'channel',
description: 'The channel to clean reactions from',
required: true
},
],
},
];
const rest = new REST({ version: "10" }).setToken(
process.env.AUTHORIZATION_TOKEN
);
(async () => {
try {
console.log("Started refreshing application (/) commands.");
await rest.put(Routes.applicationCommands(process.env.CLIENT_ID), { body: commands });
console.log("Successfully reloaded application (/) commands.");
} catch (error) {
console.error(error);
}
})();