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;
|