diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-27 05:18:48 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-09-04 10:48:54 +0200 |
commit | 7d936efb2f37db42c3e57ee9a915ed4d5ab8e25f (patch) | |
tree | 69d68d640c4ac2946b118591f02de9d3c24fb29b /src/util/entities/Guild.ts | |
parent | Add sqlite migration for plugin settings (diff) | |
download | server-7d936efb2f37db42c3e57ee9a915ed4d5ab8e25f.tar.xz |
Cleanup, reformat, fix some todos, git hook
fixup! Cleanup, reformat, fix some todos, git hook
Diffstat (limited to 'src/util/entities/Guild.ts')
-rw-r--r-- | src/util/entities/Guild.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/entities/Guild.ts b/src/util/entities/Guild.ts index cd7fa561..9edd3753 100644 --- a/src/util/entities/Guild.ts +++ b/src/util/entities/Guild.ts @@ -18,7 +18,7 @@ import { Webhook } from "./Webhook"; // TODO: guild_scheduled_events // TODO: stage_instances // TODO: threads -// TODO: +// TODO: implement keywords // "keywords": [ // "Genshin Impact", // "Paimon", @@ -75,7 +75,7 @@ export class Guild extends BaseClass { explicit_content_filter?: number = Config.get().defaults.guild.explicitContentFilter; @Column({ type: "simple-array" }) - features: string[]; //TODO use enum + features: string[]; //TODO: use enum //TODO: https://discord.com/developers/docs/resources/guild#guild-object-guild-features @Column({ nullable: true }) |