adjusts in keepOpen typebot

This commit is contained in:
Davidson Gomes 2024-06-08 19:10:01 -03:00
parent 9178fd74a9
commit b7a34ec81a

View File

@ -1010,6 +1010,15 @@ export class TypebotService {
id: session.id,
},
});
} else {
await prismaRepository.typebotSession.update({
where: {
id: session.id,
},
data: {
status: 'closed',
},
});
}
}
}