We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 986f2f2 commit 9e1a52fCopy full SHA for 9e1a52f
1 file changed
dtable_events/automations/actions.py
@@ -1519,7 +1519,10 @@ def do_action(self):
1519
if not self.can_do_action():
1520
return
1521
1522
- context_data = {'table': self.auto_rule.table_info['name']}
+ context_data = {
1523
+ 'table': self.auto_rule.table_info['name'],
1524
+ 'view': self.auto_rule.view_info['name']
1525
+ }
1526
if self.auto_rule.run_condition == PER_UPDATE:
1527
context_data['row'] = self.auto_rule.get_convert_sql_row()
1528
scripts_running_limit = self.get_scripts_running_limit()
0 commit comments