feature/IO-3096-GlobalNotifications - Checkpoint, BULLMQ!
This commit is contained in:
18
server/notifications/stringHelpers.js
Normal file
18
server/notifications/stringHelpers.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const getJobAssignmentType = (data) => {
|
||||
switch (data) {
|
||||
case "employee_pre":
|
||||
return "Prep";
|
||||
case "employee_body":
|
||||
return "Body";
|
||||
case "employee_csr":
|
||||
return "CSR";
|
||||
case "employee_refinish":
|
||||
return "Refinish";
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
getJobAssignmentType
|
||||
};
|
||||
Reference in New Issue
Block a user