How can I write conditional Story or Rules

I want two path as Verified and Non verified users I will store that in one boolean slot. I am not able to write conditional rules based on boolean slot. is_verified slot is set in custom action when user reply with OTP will work fine but I am not able to divide in to path.

  • rule: Verified user condition:

    • slot_was_set:
      • is_verified: ‘True’ steps:
    • action: utter_thanks
    • action: utter_next
  • rule: nonVerified user condition:

    • slot_was_set:
      • is_verified: ‘False’ steps:
    • action: utter_revalidate_otp
    • intent: write_otp
    • action: utter_next

I am not able to call this rules are OTP verification. Can someone help me to understand this

THANKS IN ADVANCE

Have you tried removing the quotation marks from false and true and use lowercase false and true? Since it is a boolean slot, I guess this would be it. Sorry if i’m not helpful enough.

there is another fault but your point is also right thank you