summary refs log tree commit diff
path: root/api/src
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-02 20:43:18 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-02 20:43:18 +1000
commit60ef362251d7de79a4bf21519083cd337f5740aa (patch)
tree602be6ff5066dd5896661088928f7d56ac77b02d /api/src
parentMerge branch 'fix/channelPermissionOverwriteSchema' into slowcord (diff)
parentFilter out schemas that block generation instead, and also include util in files (diff)
downloadserver-60ef362251d7de79a4bf21519083cd337f5740aa.tar.xz
Merge branch 'fix/channelPermissionOverwriteSchema' into slowcord
Diffstat (limited to 'api/src')
-rw-r--r--api/src/routes/channels/#channel_id/permissions.ts9
1 files changed, 1 insertions, 8 deletions
diff --git a/api/src/routes/channels/#channel_id/permissions.ts b/api/src/routes/channels/#channel_id/permissions.ts

index adf3cc40..2eded853 100644 --- a/api/src/routes/channels/#channel_id/permissions.ts +++ b/api/src/routes/channels/#channel_id/permissions.ts
@@ -16,14 +16,7 @@ const router: Router = Router(); // TODO: Only permissions your bot has in the guild or channel can be allowed/denied (unless your bot has a MANAGE_ROLES overwrite in the channel) -// export interface ChannelPermissionOverwriteSchema extends ChannelPermissionOverwrite {} -// TODO: typescript-json-schema does not like extending types -export interface ChannelPermissionOverwriteSchema { - allow: string; - deny: string; - id: string; - type: ChannelPermissionOverwriteType; -} +export interface ChannelPermissionOverwriteSchema extends ChannelPermissionOverwrite {} router.put( "/:overwrite_id",