diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-13 00:17:56 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-13 00:17:56 +0200 |
commit | 13b7b847618b520112af568c5cd71a6068d576c0 (patch) | |
tree | a2261f8cca6ff7186d3c92897015ee2e9a391608 /util | |
parent | :bug: fix invites: ajv doesn't treat null as undefined (diff) | |
download | server-13b7b847618b520112af568c5cd71a6068d576c0.tar.xz |
:bug: fix channel events + message send
Diffstat (limited to 'util')
-rw-r--r-- | util/src/entities/Channel.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/src/entities/Channel.ts b/util/src/entities/Channel.ts index fce85e3f..592b0b83 100644 --- a/util/src/entities/Channel.ts +++ b/util/src/entities/Channel.ts @@ -61,6 +61,7 @@ export class Channel extends BaseClass { @ManyToOne(() => Channel) parent?: Channel; + // only for group dms @Column({ nullable: true }) @RelationId((channel: Channel) => channel.owner) owner_id: string; |