You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For testing I define a rule from all states to all states. all_states = %w[draft attempted leave success failed cancelled refunded] transition from: :all_states, to: all_states
the code below not working because the from option not accepts array.
If it accept array we can have less lines.
The text was updated successfully, but these errors were encountered:
In reality it is looks very complicated. Even if I array them, they don't fit in one line. The entire file contains 74 transition from to lines. A part of file below. What can I do to visualize it?
For testing I define a rule from all states to all states.
all_states = %w[draft attempted leave success failed cancelled refunded]
transition from: :all_states, to: all_states
the code below not working because the from option not accepts array.
If it accept array we can have less lines.
The text was updated successfully, but these errors were encountered: