10 lines
335 B
JavaScript
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({});
|
|
};
|