forked from Supositware/Haha-Yes
Show if current server have logging setup
Signed-off-by: loicbersier <loic.bersier1@gmail.com>
This commit is contained in:
parent
85d612ab69
commit
c6d10ac10b
1 changed files with 8 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
||||||
const { Command } = require('discord-akairo');
|
const { Command } = require('discord-akairo');
|
||||||
|
const LogStats = require('../../models/').LogStats;
|
||||||
|
|
||||||
class ServerCommand extends Command {
|
class ServerCommand extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
@ -30,7 +31,10 @@ class ServerCommand extends Command {
|
||||||
.addField('Owner', message.guild.owner, true)
|
.addField('Owner', message.guild.owner, true)
|
||||||
.setTimestamp();
|
.setTimestamp();
|
||||||
|
|
||||||
|
const logStats = await LogStats.findOne({where: {guild: message.guild.id}});
|
||||||
|
|
||||||
|
if (logStats) addEmbed.addField('Logging', 'On ✅');
|
||||||
|
else addEmbed.addField('Logging', 'Off ❌');
|
||||||
|
|
||||||
message.channel.send({ embed: addEmbed });
|
message.channel.send({ embed: addEmbed });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue