log ticket update

This commit is contained in:
Isaac 2022-10-05 18:21:53 +01:00
parent 3f8663675d
commit fad1abf579
No known key found for this signature in database
GPG Key ID: 0DE40AE37BBA5C33

View File

@ -1,6 +1,7 @@
const { SlashCommand } = require('@eartharoid/dbf');
const { ApplicationCommandOptionType } = require('discord.js');
const ExtendedEmbedBuilder = require('../../lib/embed');
const { logTicketEvent } = require('../../lib/logging');
module.exports = class PrioritySlashCommand extends SlashCommand {
constructor(client, options) {
@ -112,11 +113,25 @@ module.exports = class PrioritySlashCommand extends SlashCommand {
else name = this.getEmoji(priority) + name;
await interaction.channel.setName(name);
// don't reassign ticket because the original is used below
await client.prisma.ticket.update({
data: { priority },
where: { id: interaction.channel.id },
});
logTicketEvent(this.client, {
action: 'update',
diff: {
original: { priority: ticket.priority },
updated: { priority: priority },
},
target: {
id: ticket.id,
name: `<#${ticket.id}>`,
},
userId: interaction.user.id,
});
return await interaction.editReply({
embeds: [
new ExtendedEmbedBuilder({