method

move_to_bottom

Importance_0
v1.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Acts::List::InstanceMethods
move_to_bottom() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/acts/list.rb, line 101
        def move_to_bottom
          return unless in_list?
          acts_as_list_class.transaction do
            decrement_positions_on_lower_items
            assume_bottom_position
          end
        end
Register or log in to add new notes.