I am using AASM. Is it possible to transition from any state? For example:
aasm_event :publish do transitions :to => :publish, :from => ANY_STATE end
I know that it is possible to pass an array of states to :from
, but this isn't what I'm after. I have tried omitting the :from
completely, but that didn't work.
aasm now supports transitions without any from
specified, which will allow transitioning from any state.
aasm_event :publish do transitions to: :publish # from ANY end
(bragging rights: I added this feature because I needed it)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With