Resume flows if they are intercepted.
(self, flows: Sequence[flow.Flow])
| 53 | |
| 54 | @command.command("flow.resume") |
| 55 | def resume(self, flows: Sequence[flow.Flow]) -> None: |
| 56 | """ |
| 57 | Resume flows if they are intercepted. |
| 58 | """ |
| 59 | intercepted = [i for i in flows if i.intercepted] |
| 60 | for f in intercepted: |
| 61 | f.resume() |
| 62 | ctx.master.addons.trigger(hooks.UpdateHook(intercepted)) |
| 63 | |
| 64 | # FIXME: this will become view.mark later |
| 65 | @command.command("flow.mark") |