allow for a type attribute

* "namespace" json_api specific type method
This commit is contained in:
Josh Lane
2015-08-04 12:25:18 -07:00
parent 4af98852b8
commit 033ce8e88d
3 changed files with 21 additions and 6 deletions

View File

@@ -134,7 +134,7 @@ module ActiveModel
object.id if object
end
def type
def json_api_type
object.class.model_name.plural
end

View File

@@ -44,7 +44,7 @@ module ActiveModel
def add_relationships(resource, name, serializers)
resource[:relationships] ||= {}
resource[:relationships][name] ||= { data: [] }
resource[:relationships][name][:data] += serializers.map { |serializer| { type: serializer.type, id: serializer.id.to_s } }
resource[:relationships][name][:data] += serializers.map { |serializer| { type: serializer.json_api_type, id: serializer.id.to_s } }
end
def add_relationship(resource, name, serializer, val=nil)
@@ -52,7 +52,7 @@ module ActiveModel
resource[:relationships][name] = { data: val }
if serializer && serializer.object
resource[:relationships][name][:data] = { type: serializer.type, id: serializer.id.to_s }
resource[:relationships][name][:data] = { type: serializer.json_api_type, id: serializer.id.to_s }
end
end
@@ -97,14 +97,14 @@ module ActiveModel
def resource_object_for(serializer, options)
options[:fields] = @fieldset && @fieldset.fields_for(serializer)
options[:required_fields] = [:id, :type]
options[:required_fields] = [:id, :json_api_type]
cache_check(serializer) do
attributes = serializer.attributes(options)
result = {
id: attributes.delete(:id).to_s,
type: attributes.delete(:type)
type: attributes.delete(:json_api_type)
}
result[:attributes] = attributes if attributes.any?