summary refs log tree commit diff
path: root/util/src/entities/Channel.ts
diff options
context:
space:
mode:
authorErkin Alp Güney <erkinalp9035@gmail.com>2022-04-23 10:57:49 +0300
committerErkin Alp Güney <erkinalp9035@gmail.com>2022-04-23 10:57:49 +0300
commitccf4386d70264fd0af346ec1558615a3a34f297f (patch)
treed3b862ed5b011313db8129a971394fa93a238740 /util/src/entities/Channel.ts
parentbackfilling — first steps (diff)
parenttext+voice code is already there (diff)
downloadserver-ccf4386d70264fd0af346ec1558615a3a34f297f.tar.xz
Merge branch 'master' of https://github.com/fosscord/fosscord-server
Diffstat (limited to 'util/src/entities/Channel.ts')
-rw-r--r--util/src/entities/Channel.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/util/src/entities/Channel.ts b/util/src/entities/Channel.ts

index 4bf81901..98766a9d 100644 --- a/util/src/entities/Channel.ts +++ b/util/src/entities/Channel.ts
@@ -352,6 +352,16 @@ export class Channel extends BaseClass { isDm() { return this.type === ChannelType.DM || this.type === ChannelType.GROUP_DM; } + + // Does the channel support sending messages ( eg categories do not ) + isWritable() { + const disallowedChannelTypes = [ + ChannelType.GUILD_CATEGORY, + ChannelType.GUILD_STAGE_VOICE, + ChannelType.VOICELESS_WHITEBOARD, + ]; + return disallowedChannelTypes.indexOf(this.type) == -1; + } } export interface ChannelPermissionOverwrite {