Guardian-admin-backend/src/controllers/settingsController.js
2025-07-15 19:31:25 +05:30

10 lines
335 B
JavaScript

// Settings Controller
exports.getNotificationSetting = async (req, res, next) => {
// TODO: Get caregiver's weekly summary notification setting
res.json({ notificationOptIn: true });
};
exports.setNotificationSetting = async (req, res, next) => {
// TODO: Set caregiver's weekly summary notification setting
res.json({});
};