// 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({}); };