aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/errors.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2012-02-20 01:25:28 -0800
committerJosé Valim <jose.valim@plataformatec.com.br>2012-02-20 01:25:28 -0800
commite1c381603d277bc4d6cb430d53a5f1d1aca377e7 (patch)
tree11b93900af2583008180799f50e141703af83e78 /activemodel/lib/active_model/errors.rb
parent1ef12fd1727909f7a33fd7f2d750d48d7f9b47e9 (diff)
parent534dc4ca1a730bff3fc9fe116bec25172c7c8afc (diff)
downloadrails-e1c381603d277bc4d6cb430d53a5f1d1aca377e7.tar.gz
rails-e1c381603d277bc4d6cb430d53a5f1d1aca377e7.tar.bz2
rails-e1c381603d277bc4d6cb430d53a5f1d1aca377e7.zip
Merge pull request #5075 from bogdan/json_full_messages
AM::Errors: allow :full_messages parameter for #to_json
Diffstat (limited to 'activemodel/lib/active_model/errors.rb')
-rw-r--r--activemodel/lib/active_model/errors.rb17
1 files changed, 14 insertions, 3 deletions
diff --git a/activemodel/lib/active_model/errors.rb b/activemodel/lib/active_model/errors.rb
index e548aa975d..042f9cd7e2 100644
--- a/activemodel/lib/active_model/errors.rb
+++ b/activemodel/lib/active_model/errors.rb
@@ -206,12 +206,23 @@ module ActiveModel
end
# Returns an Hash that can be used as the JSON representation for this object.
+ # Options:
+ # * <tt>:full_messages</tt> - determines if json object should contain
+ # full messages or not. Default: <tt>false</tt>.
def as_json(options=nil)
- to_hash
+ to_hash(options && options[:full_messages])
end
- def to_hash
- messages.dup
+ def to_hash(full_messages = false)
+ if full_messages
+ messages = {}
+ self.messages.each do |attribute, array|
+ messages[attribute] = array.map{|message| full_message(attribute, message) }
+ end
+ messages
+ else
+ self.messages.dup
+ end
end
# Adds +message+ to the error messages on +attribute+. More than one error can be added to the same