fix(api): called variable before instantiation

This commit is contained in:
Rushil Umaretiya 2023-03-06 11:14:56 -05:00
parent 24c786a3cd
commit 2ba05cd186

View File

@ -7,8 +7,9 @@ dotenv.config();
const app = Router(); const app = Router();
app.post("/", async (req, res) => { app.post("/", async (req, res) => {
let operator = null;
try { try {
const operator = await db.operator.create({ operator = await db.operator.create({
data: { data: {
name: req.body.name, name: req.body.name,
phoneNumber: req.body.phoneNumber, phoneNumber: req.body.phoneNumber,
@ -27,9 +28,10 @@ app.post("/", async (req, res) => {
app.post("/update", async (req, res) => { app.post("/update", async (req, res) => {
const { authorized, webSession } = await authorize(req, res); const { authorized, webSession } = await authorize(req, res);
let operator = null;
if (!authorized) return res.status(401).send(null); if (!authorized) return res.status(401).send(null);
try { try {
const operator = await db.operator.update({ operator = await db.operator.update({
where: { where: {
id: webSession.operatorId, id: webSession.operatorId,
}, },