summary refs log tree commit diff
path: root/util/src/entities/Sticker.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-31 17:54:09 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-31 17:54:09 +0200
commit3d929755fbbfea4aa5119ce2a1bb087269fb69e8 (patch)
tree0914d47ed52e9a7b156efb01efcd8e3cdc866d24 /util/src/entities/Sticker.ts
parentadded first unittests for api endpoints (diff)
downloadserver-3d929755fbbfea4aa5119ce2a1bb087269fb69e8.tar.xz
:sparkles: delete _ids from entities
Diffstat (limited to '')
-rw-r--r--util/src/entities/Sticker.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/entities/Sticker.ts b/util/src/entities/Sticker.ts

index 12394207..7730a86a 100644 --- a/util/src/entities/Sticker.ts +++ b/util/src/entities/Sticker.ts
@@ -31,7 +31,7 @@ export class Sticker extends BaseClass { guild_id?: string; @JoinColumn({ name: "guild_id" }) - @ManyToOne(() => Guild, (guild: Guild) => guild.id) + @ManyToOne(() => Guild) guild?: Guild; @Column({ type: "simple-enum", enum: StickerType })