Copy validation error messages from another activerecord object

# `object` is the record that has errors def take_error_messages(object) object.errors.messages.each do |key, msgs| msgs.each { |msg| errors[key] << msg } end end

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.