flows
#1749
Replies: 1 comment
-
|
I would also like to add to this that room_flow doesnt work with auto_trigger. ive had to remove the auto trigger and use !flows start myflow with the slack v3 plugin. first_step = flow.connect("my bot command", room_flow=True, auto_trigger=True) first_step = flow.connect("my bot command", room_flow=True) others in the room can not use the flow with auto_trigger. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
is it intentional that a message should return flow as just the identity ?
https://github.com/errbotio/errbot/blob/7fa0f9e22ac50fb90d4cf0badfc5a453be450fcb/errbot/backends/base.py#L401C16-L401C26
can you not access the flow ?
if i want to find out if a flow is already in progress im doing this :
is this the way to do that ? flow_name being set to the name local in each bot command
Beta Was this translation helpful? Give feedback.
All reactions