summary refs log tree commit diff
path: root/util/src/entities/Role.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-01-24 10:22:46 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-01-24 10:22:46 +1100
commitba79fe858ce487de6138893be6834309085bedbb (patch)
treed7d03791adebf2c44f2b941fe70d12aa7ba4e226 /util/src/entities/Role.ts
parentAdded `typescript-cached-transpile` package to help improve performance (diff)
parent* Replaced list of invisible characters with unicode codepoints (diff)
downloadserver-ba79fe858ce487de6138893be6834309085bedbb.tar.xz
Merge branch 'master' into tsnode
Diffstat (limited to '')
-rw-r--r--util/src/entities/Role.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/src/entities/Role.ts b/util/src/entities/Role.ts

index 9fca99a5..4b721b5b 100644 --- a/util/src/entities/Role.ts +++ b/util/src/entities/Role.ts
@@ -36,6 +36,12 @@ export class Role extends BaseClass { @Column() position: number; + @Column({ nullable: true }) + icon: string; + + @Column({ nullable: true }) + unicode_emoji: string; + @Column({ type: "simple-json", nullable: true }) tags?: { bot_id?: string;