Assuming the following setup:
class Parent < CouchRest::Model::Base
property :title, String
property :child, Child
validates :title, :presence => true
end
class Child < Hash
include CouchRest::Model::CastedModel
property :title, String
validates :title, :presence => true
end
class ParentsController < ApplicationController
respond_to :html, :json
def update
@parent.update_attributes(params[:parent])
respond_with @parent
end
end
I try to provide occurring errors via json. When title of parent is not present the message correctly is "title: can't be blank". In case a child's title is blank the message is "child: is invalid" without telling what exactly went wrong.
Accessing @parent.child.errors directly works fine - but how to deliver those errors with it's parent?
Thank's in advance!