method
extract_record
v2.2.1 -
Show latest stable
- Class:
ActionController::PolymorphicRoutes
extract_record(record_or_hash_or_array)private
No documentation available.
# File actionpack/lib/action_controller/polymorphic_routes.rb, line 167
def extract_record(record_or_hash_or_array)
case record_or_hash_or_array
when Array; record_or_hash_or_array.last
when Hash; record_or_hash_or_array[:id]
else record_or_hash_or_array
end
end