(self, session)
| 100 | return workflow |
| 101 | |
| 102 | def has_time_trigger(self, session) -> bool: |
| 103 | first_action = self.get_first_action(session = session) |
| 104 | return first_action and first_action.trigger_data.get('event_name') == 'time_trigger' and first_action.trigger_data.get('cron_expression') |
| 105 | def get_existing_unmodified_flow( |
| 106 | session, |
| 107 | project, |
no test coverage detected