diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-04-22 18:12:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-22 18:12:18 +0200 |
commit | 3491d01dca9917a9860ee77163fbed4ea6ef3d94 (patch) | |
tree | 9eabeea3b7bc6138365f642578ffbbb9c87b3c80 /util/src/entities/Channel.ts | |
parent | Update UserGroup.ts (diff) | |
parent | Fix not assigning new changes to input fields in users/@me (diff) | |
download | server-3491d01dca9917a9860ee77163fbed4ea6ef3d94.tar.xz |
Merge pull request #734 from MaddyUnderStars/fix/sanitisation
Fix users arbitrarily editing their own User object, and disallow sending messages to certain channels ( eg categories )
Diffstat (limited to 'util/src/entities/Channel.ts')
-rw-r--r-- | util/src/entities/Channel.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/util/src/entities/Channel.ts b/util/src/entities/Channel.ts index 4bf81901..c516e6a1 100644 --- a/util/src/entities/Channel.ts +++ b/util/src/entities/Channel.ts @@ -352,6 +352,17 @@ 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_VOICE, // TODO: Remove this when clients can send messages to voice channels on discord.com + ChannelType.GUILD_STAGE_VOICE, + ChannelType.VOICELESS_WHITEBOARD, + ]; + return disallowedChannelTypes.indexOf(this.type) == -1; + } } export interface ChannelPermissionOverwrite { |