PSA/server/migrations/20260219000006_add_sla_internal_notification_templates.cjs
Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

73 lines
2.5 KiB
JavaScript

/**
* Add SLA notification category, subtypes, and templates for internal notifications.
*
* Creates:
* - New 'sla' category in internal_notification_categories
* - Subtypes: sla-warning, sla-breach, sla-response-met, sla-resolution-met, sla-escalation
* - English templates for each subtype
*
* Uses the shared source-of-truth template pattern.
*/
const { upsertCategoriesAndSubtypes } = require('./utils/templates/internal/categoriesAndSubtypes.cjs');
const { upsertInternalTemplates } = require('./utils/templates/_shared/upsertInternalTemplates.cjs');
const { TEMPLATES } = require('./utils/templates/internal/sla.cjs');
exports.up = async function(knex) {
console.log('Adding SLA internal notification category, subtypes, and templates...');
// 1. Upsert all internal notification categories & subtypes (including SLA)
await upsertCategoriesAndSubtypes(knex);
console.log(' ✓ Internal categories & subtypes upserted');
// 2. Upsert SLA templates from source-of-truth
await upsertInternalTemplates(knex, TEMPLATES);
console.log(`${TEMPLATES.length} SLA internal notification templates upserted`);
console.log('Successfully added SLA internal notification templates');
};
exports.down = async function(knex) {
console.log('Removing SLA internal notification templates...');
// Delete templates (includes legacy per-threshold names and the consolidated name)
await knex('internal_notification_templates')
.whereIn('name', [
'sla-warning',
'sla-warning-50',
'sla-warning-75',
'sla-warning-90',
'sla-breach',
'sla-response-met',
'sla-resolution-met',
'sla-escalation'
])
.delete();
// Delete subtypes
await knex('internal_notification_subtypes')
.whereIn('name', [
'sla-warning',
'sla-breach',
'sla-response-met',
'sla-resolution-met',
'sla-escalation'
])
.delete();
// Delete category (only if no other subtypes exist)
const remainingSubtypes = await knex('internal_notification_subtypes')
.join('internal_notification_categories', 'internal_notification_subtypes.internal_category_id', 'internal_notification_categories.internal_notification_category_id')
.where('internal_notification_categories.name', 'sla')
.count('* as count')
.first();
if (Number(remainingSubtypes?.count || 0) === 0) {
await knex('internal_notification_categories')
.where('name', 'sla')
.delete();
}
console.log('Successfully removed SLA internal notification templates');
};