feature/IO-3060-Realtime-Notifications-System
- Add handlers for Job and Bill Change / Register Routers - Add Tables / Modify Tables / Add permissions.
This commit is contained in:
5
server/notifications/eventHandlers/handeJobChange.js
Normal file
5
server/notifications/eventHandlers/handeJobChange.js
Normal file
@@ -0,0 +1,5 @@
|
||||
const handleJobChange = (req, res) => {
|
||||
return res.status(200).json({ message: "Job change handled." });
|
||||
};
|
||||
|
||||
module.exports = handleJobChange;
|
||||
5
server/notifications/eventHandlers/handleBillChange.js
Normal file
5
server/notifications/eventHandlers/handleBillChange.js
Normal file
@@ -0,0 +1,5 @@
|
||||
const handleBillChange = (req, res) => {
|
||||
return res.status(200).json({ message: "Bill change handled." });
|
||||
};
|
||||
|
||||
module.exports = handleBillChange;
|
||||
Reference in New Issue
Block a user