method

assert_valid_transaction_action

assert_valid_transaction_action(actions)
private

No documentation available.

# File activerecord/lib/active_record/transactions.rb, line 250
      def assert_valid_transaction_action(actions)
        if (actions - ACTIONS).any?
          raise ArgumentError, ":on conditions for after_commit and after_rollback callbacks have to be one of #{ACTIONS.join(",")}"
        end
      end