summary refs log tree commit diff
path: root/src/util/entities/Sticker.ts
diff options
context:
space:
mode:
authorSamuel (Flam3rboy) <github@samuelscheit.com>2023-03-30 18:13:34 +0200
committerGitHub <noreply@github.com>2023-03-30 18:13:34 +0200
commit69ea71aa9e0bd2e5a98904a66fba0ad3745707cb (patch)
tree807384e6d19111a4e038113854bb28791814a8c7 /src/util/entities/Sticker.ts
parentSPACEBAR (diff)
parentfeat: add DB_LOGGING env (diff)
downloadserver-69ea71aa9e0bd2e5a98904a66fba0ad3745707cb.tar.xz
Merge pull request #1008 from spacebarchat/dev/samuel
Diffstat (limited to '')
-rw-r--r--src/util/entities/Sticker.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/entities/Sticker.ts b/src/util/entities/Sticker.ts

index cd07e65a..9139a5b1 100644 --- a/src/util/entities/Sticker.ts +++ b/src/util/entities/Sticker.ts
@@ -18,7 +18,7 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm"; import { User } from "./User"; -import { BaseClass } from "./BaseClass"; +import { EntityCache } from "../cache"; import { Guild } from "./Guild"; export enum StickerType { @@ -34,7 +34,7 @@ export enum StickerFormatType { } @Entity("stickers") -export class Sticker extends BaseClass { +export class Sticker extends EntityCache { @Column() name: string;