summary refs log tree commit diff
diff options
context:
space:
mode:
authorunknownPerson115 <69736850+unknownPerson115@users.noreply.github.com>2021-12-25 15:33:55 -0600
committerGitHub <noreply@github.com>2021-12-25 15:33:55 -0600
commit4cf4de805bff4ecb55f09d304ee2b451d0729cd6 (patch)
tree25d4709a3882fd322cec173b6afa7e2209e88ee7
parentCreate stop.ts (for /stop API route) (diff)
downloadserver-4cf4de805bff4ecb55f09d304ee2b451d0729cd6.tar.xz
Update api/src/routes/stop.ts
Co-authored-by: Erkin Alp Güney <erkinalp9035@gmail.com>
-rw-r--r--api/src/routes/stop.ts9
1 files changed, 2 insertions, 7 deletions
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) }