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.(bragging rights: I added this feature because I needed it)