Stories are below
- story: ask weather after auth
steps:
- intent: weather
- slot_was_set:
- is_authenticated: true
- action: weather_form
- active_loop: weather_form
- active_loop: null
- action: action_get_temp
- story: ask weather before auth
steps:
- intent: weather
- slot_was_set:
- is_authenticated: false
- action: account_form
- active_loop: account_form
- active_loop: null
- action: weather_form
- active_loop: weather_form
- active_loop: null
- action: action_get_temp
and slot is defined like below:
is_authenticated:
type: bool
influence_conversation: true
initial_value: false
mappings:
- type: custom
so after authentication slot ‘is_authenticated’ getting set to true but only second story is getting follwed.