mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-12-23 00:03:09 +02:00
linted code
This commit is contained in:
parent
a84614fbdd
commit
2cd943985e
@ -13,6 +13,7 @@ const {
|
||||
const fs = require('fs');
|
||||
const { join } = require('path');
|
||||
const config = require(join(__dirname, '../../user/', require('../').config));
|
||||
const archive = require('../modules/archive');
|
||||
|
||||
// Similar to 'close' command, however it iterates through them.
|
||||
|
||||
@ -36,8 +37,8 @@ module.exports = {
|
||||
.setColor(config.err_colour)
|
||||
.setAuthor(message.author.username, message.author.displayAvatarURL())
|
||||
.setTitle('❌ **No permission**')
|
||||
.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`)
|
||||
.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('Help', `Type \`${config.prefix}help ${this.name}\` for more information`)
|
||||
.setFooter(guild.name, guild.iconURL())
|
||||
);
|
||||
@ -113,7 +114,7 @@ module.exports = {
|
||||
|
||||
success = true;
|
||||
closeAll();
|
||||
})
|
||||
});
|
||||
|
||||
collector.on('end', () => {
|
||||
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?
|
||||
|
Loading…
Reference in New Issue
Block a user