From 87da281f1bc36579f19a6c4fd0719f9321256f08 Mon Sep 17 00:00:00 2001 From: maxall4 Date: Mon, 21 Mar 2022 10:10:35 -1000 Subject: [PATCH] Updated for server password option --- server/src/routes/auth.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/routes/auth.ts b/server/src/routes/auth.ts index b5d6e812..6b91adc3 100644 --- a/server/src/routes/auth.ts +++ b/server/src/routes/auth.ts @@ -42,6 +42,7 @@ auth.post( body: { username: Joi.string().required(), password: Joi.string().required(), + serverPassword: Joi.string(), }, }), async (req, res, next) => {