forked from Supositware/Haha-Yes
list all tag from server
This commit is contained in:
parent
28190c299e
commit
f9bb49ff8b
1 changed files with 11 additions and 0 deletions
|
@ -14,6 +14,11 @@ class taglistCommand extends Command {
|
||||||
id: 'raw',
|
id: 'raw',
|
||||||
match: 'rest',
|
match: 'rest',
|
||||||
optional: true
|
optional: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'list',
|
||||||
|
match: 'flag',
|
||||||
|
flag: '--list',
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
description: {
|
description: {
|
||||||
|
@ -25,6 +30,12 @@ class taglistCommand extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message, args) {
|
async exec(message, args) {
|
||||||
|
if (args.list) {
|
||||||
|
let tagList = await Tag.findAll({attributes: ['trigger'], where: {serverID: message.guild.id}});
|
||||||
|
const tagString = tagList.map(t => t.trigger).join(', ') || 'No tags set.';
|
||||||
|
return message.channel.send(`List of tags:\n${tagString}`);
|
||||||
|
}
|
||||||
|
|
||||||
if (args.raw) {
|
if (args.raw) {
|
||||||
let tagList = await Tag.findOne({attributes: ['trigger','response','ownerID'], where: {trigger: args.raw, serverID: message.guild.id}});
|
let tagList = await Tag.findOne({attributes: ['trigger','response','ownerID'], where: {trigger: args.raw, serverID: message.guild.id}});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue