mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-04-05 12:51:42 +03:00
25 lines
429 B
JavaScript
25 lines
429 B
JavaScript
const { Structures } = require('discord.js');
|
|
|
|
Structures.extend('TextChannel', TextChannel => {
|
|
return class extends TextChannel {
|
|
constructor(client, data) {
|
|
super(client, data);
|
|
}
|
|
|
|
get isTicket() {
|
|
return !!this.client.db.Ticket.findOne({
|
|
where: {
|
|
id: this.id
|
|
}
|
|
});
|
|
}
|
|
|
|
get ticket() {
|
|
return new class {
|
|
constructor(channel) {
|
|
this.channel = channel;
|
|
}
|
|
}(this);
|
|
}
|
|
};
|
|
}); |