24 lines
640 B
JavaScript
24 lines
640 B
JavaScript
/** Notification Scenarios
|
|
* @description This file contains the scenarios for job notifications.
|
|
* @type {string[]}
|
|
*/
|
|
const notificationScenarios = [
|
|
"job-assigned-to-me",
|
|
"bill-posted",
|
|
"critical-parts-status-changed",
|
|
"part-marked-back-ordered",
|
|
"new-note-added",
|
|
"schedule-dates-changed",
|
|
"tasks-updated-created",
|
|
"new-media-added-reassigned",
|
|
"new-time-ticket-posted",
|
|
"intake-delivery-checklist-completed",
|
|
"job-added-to-production",
|
|
"job-status-change",
|
|
"payment-collected-completed",
|
|
"alternate-transport-changed"
|
|
// "supplement-imported", // Disabled for now
|
|
];
|
|
|
|
export { notificationScenarios };
|