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

Block a record from being inserted when a validation fails.

🔒 135 harder puzzles locked — reach 🥷 Console Cadet to unlock.

Difficulty

abort_insert.js
01(function executeRule(current, previous) {
02 if (!current.short_description) {
03 gs.addErrorMessage('Description is required');
04 ▢ ▢ ▢ ▢;
05 }
06})(current, previous);

Choose the right block