mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-09-06 02:01:26 +03:00
Select menu question type and finally fix logging diff
This commit is contained in:
@@ -42,10 +42,12 @@ module.exports.get = fastify => ({
|
||||
label: true,
|
||||
maxLength: true,
|
||||
minLength: true,
|
||||
options: true,
|
||||
order: true,
|
||||
placeholder: true,
|
||||
required: true,
|
||||
style: true,
|
||||
type: true,
|
||||
value: true,
|
||||
},
|
||||
},
|
||||
@@ -91,10 +93,12 @@ module.exports.patch = fastify => ({
|
||||
label: true,
|
||||
maxLength: true,
|
||||
minLength: true,
|
||||
options: true,
|
||||
order: true,
|
||||
placeholder: true,
|
||||
required: true,
|
||||
style: true,
|
||||
type: true,
|
||||
value: true,
|
||||
},
|
||||
},
|
||||
|
@@ -19,6 +19,7 @@ module.exports.get = () => ({
|
||||
avatar: client.user.avatarURL(),
|
||||
discriminator: client.user.discriminator,
|
||||
id: client.user.id,
|
||||
portal: process.env.PORTAL || null,
|
||||
stats: {
|
||||
activatedUsers: users.length,
|
||||
archivedMessages: users.reduce((total, user) => total + user.messageCount, 0), // don't count archivedMessage table rows, they get deleted
|
||||
|
Reference in New Issue
Block a user