mirror of
https://github.com/vitalityAI/therapist.git
synced 2025-04-06 04:50:16 -04:00
fix(api): called variable before instantiation
This commit is contained in:
parent
24c786a3cd
commit
2ba05cd186
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user