summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-10 16:07:01 +0200
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-12-18 23:48:17 +1100
commit39f4aa6b704e42830d3d56f3ae989e33c36db6be (patch)
tree08d70f2b324ff26508e0f9358e7e3776cccb51f7 /src
parentRefactor applications (diff)
downloadserver-39f4aa6b704e42830d3d56f3ae989e33c36db6be.tar.xz
Make teams nullable
Diffstat (limited to 'src')
-rw-r--r--src/api/routes/applications/index.ts1
-rw-r--r--src/util/entities/Application.ts1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/applications/index.ts b/src/api/routes/applications/index.ts
index 70af84e6..94cfa5c5 100644
--- a/src/api/routes/applications/index.ts
+++ b/src/api/routes/applications/index.ts
@@ -17,7 +17,6 @@ router.post("/", route({ body: "ApplicationCreateSchema" }), async (req: Request
 		name: trimSpecial(body.name),
 		description: "",
 		bot_public: true,
-		bot_require_code_grant: false,
 		owner: user,
 		verify_key: "IMPLEMENTME",
 		flags: 0,
diff --git a/src/util/entities/Application.ts b/src/util/entities/Application.ts
index 861c5bdd..67475bdd 100644
--- a/src/util/entities/Application.ts
+++ b/src/util/entities/Application.ts
@@ -105,6 +105,7 @@ export class Application extends BaseClass {
 	@JoinColumn({ name: "team_id" })
 	@ManyToOne(() => Team, {
 		onDelete: "CASCADE",
+		nullable: true
 	})
 	team?: Team;