method

transitions_from_state?

rails latest stable - Class: ActiveModel::StateMachine::Event

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

transitions_from_state?(state)
public

No documentation available.

# File activemodel/lib/active_model/state_machine/event.rb, line 38
      def transitions_from_state?(state)
        @transitions.any? { |t| t.from? state }
      end