linted code

This commit is contained in:
Oliver Cordingley 2021-01-16 14:50:52 +00:00
parent a84614fbdd
commit 2cd943985e

View File

@ -13,6 +13,7 @@ const {
const fs = require('fs'); const fs = require('fs');
const { join } = require('path'); const { join } = require('path');
const config = require(join(__dirname, '../../user/', require('../').config)); const config = require(join(__dirname, '../../user/', require('../').config));
const archive = require('../modules/archive');
// Similar to 'close' command, however it iterates through them. // Similar to 'close' command, however it iterates through them.
@ -36,8 +37,8 @@ module.exports = {
.setColor(config.err_colour) .setColor(config.err_colour)
.setAuthor(message.author.username, message.author.displayAvatarURL()) .setAuthor(message.author.username, message.author.displayAvatarURL())
.setTitle('❌ **No permission**') .setTitle('❌ **No permission**')
.setDescription(`You do not have permission to use this command as you are not a staff member.`) .setDescription('You do not have permission to use this command as you are not a staff member.')
.addField('Usage', `\`${config.prefix}${this.name}${" " + this.usage}\`\n`) .addField('Usage', `\`${config.prefix}${this.name}${' ' + this.usage}\`\n`)
.addField('Help', `Type \`${config.prefix}help ${this.name}\` for more information`) .addField('Help', `Type \`${config.prefix}help ${this.name}\` for more information`)
.setFooter(guild.name, guild.iconURL()) .setFooter(guild.name, guild.iconURL())
); );
@ -82,7 +83,7 @@ module.exports = {
const collector = confirm.createReactionCollector( const collector = confirm.createReactionCollector(
(reaction, user) => reaction.emoji.name === '✅' && user.id === message.author.id, { (reaction, user) => reaction.emoji.name === '✅' && user.id === message.author.id, {
time: 15000, time: 15000,
}); });
collector.on('collect', async () => { collector.on('collect', async () => {
if (channel.id != message.channel.id) { if (channel.id != message.channel.id) {
@ -113,7 +114,7 @@ module.exports = {
success = true; success = true;
closeAll(); closeAll();
}) });
collector.on('end', () => { collector.on('end', () => {
if (!success) { if (!success) {
@ -190,12 +191,6 @@ module.exports = {
}); });
} }
await Ticket.destroy({
where: {
open: true,
},
});
} }
// TODO: possibly make users allow to close all of their issues? // TODO: possibly make users allow to close all of their issues?