I am building a menu-like form for the user to input some data using a couple of buttons and for each button there is a conversation. I need the bot to be able to persist the user-context between the conversations.
I have some problems when using ctx.session and conversation.session.
- Changing any props from
conversation.sessionwill reflect the change for all users using this bot. - Changing any props from
ctx.sessionwont be shown in the next conversation.
Any ideas on how this should be done?