fix: fixed session create

This commit is contained in:
Rushil Umaretiya 2023-03-05 03:38:31 -05:00
parent ce91c23674
commit 297bcb9704
2 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,6 @@ app.post("/receive", async (req, res) => {
const twiml = new VoiceResponse();
await createSession(req.body.CallSid, req.body.From);
console.log(`created session with CallSid: ${callId}`);
const gather = twiml.gather({
action: "/call/respond",

View File

@ -2,6 +2,9 @@ import { Role } from "@prisma/client";
import { db } from "./db.js";
export const createSession = async (callId, callerPhone) => {
let session = await findSessionByCallId(callId);
if (session) return session;
return await db.session.create({
data: {
callId: callId,