11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
module.exports = {
|
|
name: "inactiveapplicationaccept",
|
|
description: "Accept an inactivity application.",
|
|
type: "button",
|
|
|
|
async execute(interaction) {
|
|
|
|
await interaction.reply({ content: "This button is currently disabled.", ephemeral: true });
|
|
|
|
}
|
|
} |