2021-09-22 17:15:31 +00:00
|
|
|
const { SlashCommandBuilder } = require('@discordjs/builders');
|
|
|
|
const fn = require('../functions.js');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('savepasta')
|
|
|
|
.setDescription('Save a copypasta!')
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('pasta-name')
|
|
|
|
.setDescription('What should the name of the copypasta be?')
|
|
|
|
.setRequired(true))
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('pasta-content')
|
|
|
|
.setDescription('What is the content of the copypasta?')
|
|
|
|
.setRequired(true)),
|
|
|
|
async execute(interaction) {
|
|
|
|
const pastaData = {
|
|
|
|
name: interaction.options.getString('pasta-name'),
|
|
|
|
content: interaction.options.getString('pasta-content'),
|
|
|
|
};
|
|
|
|
fn.upload.pasta(pastaData, interaction.client);
|
2022-06-11 21:22:51 +00:00
|
|
|
interaction.reply({content: `The copypasta has been saved as ${pastaData.name}.pasta`, ephemeral: true });
|
2021-09-22 17:15:31 +00:00
|
|
|
},
|
|
|
|
};
|