Agromind-backend / backend /controllers /videoCallController.js
gh-action-hf-sync
sync: backend from github@a0ba06fe
41d9f09
Raw
History Blame
388 Bytes
// 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}` });
};