Skip to content

Commit fbf323e

Browse files
authored
Create auto_apply_template_on_record.js
1 parent ac7a1e6 commit fbf323e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Before Business rule applied on Glide Record Table ex. story[rm_story].
2+
3+
4+
(function executeRule(current, previous /*null when async*/) {
5+
6+
// Auto Apply Template on Glide Record Table: Story
7+
var templateName = "Story creation"; //replace template name
8+
current.applyTemplate(templateName);
9+
10+
})(current, previous);

0 commit comments

Comments
 (0)