diff --git a/docs/general/serializers.md b/docs/general/serializers.md index 473b9cd1b..5d0ed7089 100644 --- a/docs/general/serializers.md +++ b/docs/general/serializers.md @@ -98,31 +98,6 @@ If the instance of `Picture` belongs to a `Product`, an example payload might be } ``` -In prior releases (and optionally in `0.10`), a `polymorphic: true` parameter is required: - -```ruby -class PictureSerializer < ActiveModel::Serializer - has_one :imageable, polymorphic: true -end -``` - -In this case, an example payload might be: - -```javascript -{ - picture: { - id: 1, - imageable: { - type: "product", - product: { - id: 3, - title: "Product 3" - } - } - } -} -``` - ### Caching #### ::cache