1 files changed, 1 insertions, 2 deletions
diff --git a/api/src/routes/applications/index.ts b/api/src/routes/applications/index.ts
index 41ce35b5..033dcc51 100644
--- a/api/src/routes/applications/index.ts
+++ b/api/src/routes/applications/index.ts
@@ -23,10 +23,9 @@ router.post("/", route({}), async (req: Request, res: Response) => {
name: trimSpecial(body.name),
description: "",
bot_public: true,
- bot_require_code_grant: false,
owner: user,
verify_key: "IMPLEMENTME",
- flags: ""
+ flags: 0
});
await app.save();
res.json(app).status(200);
|