diff --git a/package-lock.json b/package-lock.json index aabad644..bc58336f 100644 Binary files a/package-lock.json and b/package-lock.json differ diff --git a/package.json b/package.json index 3994670b..a0db1d88 100644 --- a/package.json +++ b/package.json @@ -55,9 +55,9 @@ "@types/probe-image-size": "^7.2.0", "@types/sharp": "^0.31.1", "@types/ws": "^8.5.5", - "@typescript-eslint/eslint-plugin": "^5.62.0", - "@typescript-eslint/parser": "^5.62.0", - "eslint": "^8.46.0", + "@typescript-eslint/eslint-plugin": "^6.21.0", + "@typescript-eslint/parser": "^6.21.0", + "eslint": "^8.56.0", "express": "^4.18.2", "husky": "^8.0.3", "prettier": "^2.8.8", diff --git a/src/api/routes/applications/#id/index.ts b/src/api/routes/applications/#id/index.ts index c372869a..949d66f8 100644 --- a/src/api/routes/applications/#id/index.ts +++ b/src/api/routes/applications/#id/index.ts @@ -21,6 +21,7 @@ import { Application, ApplicationModifySchema, DiscordApiErrors, + handleFile, } from "@spacebar/util"; import { Request, Response, Router } from "express"; import { HTTPError } from "lambert-server"; @@ -83,6 +84,13 @@ router.patch( ) throw new HTTPError(req.t("auth:login.INVALID_TOTP_CODE"), 60008); + if (body.icon) { + body.icon = await handleFile( + `/app-icons/${app.id}`, + body.icon as string, + ); + } + if (app.bot) { app.bot.assign({ bio: body.description }); await app.bot.save(); diff --git a/src/api/routes/guilds/#guild_id/bans.ts b/src/api/routes/guilds/#guild_id/bans.ts index 9aeb27f0..d399e549 100644 --- a/src/api/routes/guilds/#guild_id/bans.ts +++ b/src/api/routes/guilds/#guild_id/bans.ts @@ -195,7 +195,7 @@ router.delete( async (req: Request, res: Response) => { const { guild_id, user_id } = req.params; - const ban = await Ban.findOneOrFail({ + await Ban.findOneOrFail({ where: { guild_id: guild_id, user_id: user_id }, });