summary refs log tree commit diff
path: root/util/src
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-13 00:17:56 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-13 00:17:56 +0200
commit13b7b847618b520112af568c5cd71a6068d576c0 (patch)
treea2261f8cca6ff7186d3c92897015ee2e9a391608 /util/src
parent:bug: fix invites: ajv doesn't treat null as undefined (diff)
downloadserver-13b7b847618b520112af568c5cd71a6068d576c0.tar.xz
:bug: fix channel events + message send
Diffstat (limited to 'util/src')
-rw-r--r--util/src/entities/Channel.ts1
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;