← Home
🔥0 DAY
0 XP
Business Rules · Lv 1
🍼 Script Kiddo · ×1.001/1

Set priority BEFORE the insert hits the DB — without an extra UPDATE.

🔒 1 harder puzzle locked — reach 🥷 Console Cadet to unlock.

set_priority_br.js
01// Business Rule on 'incident'
02// When: ▢ ▢ ▢ ▢
03(function executeRule(current, previous) {
04 if (current.impact == 1 && current.urgency == 1) {
05 current.priority = 1;
06 }
07})(current, previous);

Choose the right block

Instance Simulator (dev10294)idle
Pick a block, then hit RUN SCRIPT to simulate.