Spaces:
Running
Running
File size: 388 Bytes
8a6248c | 1 2 3 4 5 6 7 8 9 10 11 | // controllers/videoCallController.js
export const startCall = (req, res) => {
const { appointmentId } = req.body;
res.status(200).json({ message: `Call started for appointment ${appointmentId}` });
};
export const joinCall = (req, res) => {
const { appointmentId } = req.body;
res.status(200).json({ message: `Farmer joined call for appointment ${appointmentId}` });
};
|