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
commit7e20268c975f711aa1cb91ba064ca57a521ec25d (patch)
treeb587ef3adfc56b96bfc064c7e77261d88a844a44 /api/src
parentMerge branch 'fix/channelPermissionOverwriteSchema' into slowcord (diff)
parentFilter out schemas that block generation instead, and also include util in files (diff)
downloadserver-7e20268c975f711aa1cb91ba064ca57a521ec25d.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",