Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make error pointers work with key transformations. #58

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions lib/jsonapi/active_model_error_serializer.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
require 'jsonapi/error_serializer'
require 'jsonapi/deserialization'

module JSONAPI
# [ActiveModel::Errors] serializer
class ActiveModelErrorSerializer < ErrorSerializer
extend ::JSONAPI::Deserialization

# Cleanups to DRY things...
singleton_class.undef_method :jsonapi_deserialize

attribute :status do
'422'
end
Expand Down Expand Up @@ -45,6 +51,11 @@ class ActiveModelErrorSerializer < ErrorSerializer
attrs = (model_serializer.attributes_to_serialize || {}).keys
rels = (model_serializer.relationships_to_serialize || {}).keys

# Revert back to underscore any serializer transformation...
[attrs, rels].each do |skeys|
skeys.map! { |skey| jsonapi_inflector.underscore(skey) }
end

if attrs.include?(error_key)
{ pointer: "/data/attributes/#{error_key}" }
elsif rels.include?(error_key)
Expand Down