From bb695969fe176b005249c14af81486bd1545a3fc Mon Sep 17 00:00:00 2001 From: unknownPerson115 <69736850+unknownPerson115@users.noreply.github.com> Date: Sat, 25 Dec 2021 15:33:55 -0600 Subject: Update api/src/routes/stop.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Erkin Alp Güney --- api/src/routes/stop.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'api') diff --git a/api/src/routes/stop.ts b/api/src/routes/stop.ts index b4f2de5e..c6a3de50 100644 --- a/api/src/routes/stop.ts +++ b/api/src/routes/stop.ts @@ -13,13 +13,8 @@ router.post("/", route({}), async (req: Request, res: Response) => { res.sendStatus(200) process.kill(process.pid, 'SIGTERM') } - if(user.flags <= '4095') { - console.log("user that POSTed to the /stop API was DENIED"); - console.log(user.flags); - res.sendStatus(403) - } - if(user.flags >= '4097'){ - console.log("user that POSTed to the /stop API was DENIED"); + else { + console.log("operation failed"); console.log(user.flags); res.sendStatus(403) } -- cgit 1.4.1