diff options
author | AlTech98 <altech123159@gmail.com> | 2021-09-18 08:03:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-18 08:03:52 +0200 |
commit | 2580f6b89116ee69de1f6485eef73563a26414cd (patch) | |
tree | bd90b3af6318613d54644b828e3ff8cb59811a78 /api/src/routes/channels | |
parent | Fix icon, owner_id change and channel deletion for group DMs (diff) | |
parent | :bug: fix body parse treating null not as undefined (except for icons/avatars) (diff) | |
download | server-2580f6b89116ee69de1f6485eef73563a26414cd.tar.xz |
Merge branch 'fosscord:master' into fix-dm
Diffstat (limited to 'api/src/routes/channels')
-rw-r--r-- | api/src/routes/channels/#channel_id/invites.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/api/src/routes/channels/#channel_id/invites.ts b/api/src/routes/channels/#channel_id/invites.ts index 71612e31..22420983 100644 --- a/api/src/routes/channels/#channel_id/invites.ts +++ b/api/src/routes/channels/#channel_id/invites.ts @@ -8,9 +8,9 @@ import { isTextChannel } from "./messages"; const router: Router = Router(); export interface InviteCreateSchema { - target_user_id?: string | null; - target_type?: string | null; - validate?: string | null; // ? what is this + target_user_id?: string; + target_type?: string; + validate?: string; // ? what is this max_age?: number; max_uses?: number; temporary?: boolean; |