mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
addd missing auditLogWebhook values in various places
This commit is contained in:
parent
ad8dd18d02
commit
7d3fa25f75
3 changed files with 3 additions and 0 deletions
|
@ -11,6 +11,7 @@ export const CreateRoleypolyData = onlyRootUsers(
|
|||
message:
|
||||
'Hey, this is kind of a demo setup so features/use cases can be shown off.\n\nThanks for using Roleypoly <3',
|
||||
features: Features.Preview,
|
||||
auditLogWebhook: null,
|
||||
categories: [
|
||||
{
|
||||
id: KSUID.randomSync().string,
|
||||
|
|
|
@ -44,6 +44,7 @@ export const transformLegacyGuild = (guild: LegacyGuildData): GuildData => {
|
|||
id: guild.id,
|
||||
message: guild.message,
|
||||
features: Features.LegacyGuild,
|
||||
auditLogWebhook: null,
|
||||
categories: sortBy(Object.values(guild.categories), 'position').map(
|
||||
(category, idx) => ({
|
||||
...category,
|
||||
|
|
|
@ -174,6 +174,7 @@ export const guildData: GuildData = {
|
|||
message: 'henlo worl!!',
|
||||
categories: [mockCategory, mockCategorySingle],
|
||||
features: Features.None,
|
||||
auditLogWebhook: null,
|
||||
};
|
||||
|
||||
export const user: DiscordUser = {
|
||||
|
|
Loading…
Add table
Reference in a new issue