generated from Baipyrus/DiscordJS-Template
refactor: renamed to differentiate command types
This commit is contained in:
parent
7cd7d68d3b
commit
124e5afe5a
@ -38,7 +38,9 @@ const registerSelfRoles = async (interaction) => {
|
|||||||
response.msgID = id;
|
response.msgID = id;
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
} catch (_) {
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
|
||||||
// Reply failed to acknowledge command
|
// Reply failed to acknowledge command
|
||||||
await interaction.reply({
|
await interaction.reply({
|
||||||
content: 'Failed to fetch message!',
|
content: 'Failed to fetch message!',
|
||||||
@ -92,7 +94,9 @@ const addSelfRoles = async (interaction) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
console.info(`[INFO] Added new entry to get role with ID '${role.id}' using '${emoji}'.`);
|
console.info(`[INFO] Added new entry to get role with ID '${role.id}' using '${emoji}'.`);
|
||||||
} catch (_) {
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
|
||||||
// Reply failed to acknowledge command
|
// Reply failed to acknowledge command
|
||||||
await interaction.reply({
|
await interaction.reply({
|
||||||
content: `Failed to ${step} message!`,
|
content: `Failed to ${step} message!`,
|
||||||
@ -163,7 +167,19 @@ export async function execute(interaction) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (createNew) {
|
if (createNew) {
|
||||||
console.info(`[INFO] New self roles on message with ID: '${id}'.`);
|
try {
|
||||||
|
// Create database entry
|
||||||
Message.create({ id });
|
Message.create({ id });
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
|
||||||
|
// Reply failed to acknowledge command
|
||||||
|
await interaction.followUp({
|
||||||
|
content: 'Failed to save data from message!',
|
||||||
|
ephemeral: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
console.info(`[INFO] New self roles on message with ID: '${id}'.`);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user