Skip to content

Instantly share code, notes, and snippets.

@peterberkenbosch
Created May 1, 2014 12:58
Show Gist options
  • Save peterberkenbosch/7f2f5a3bfd7c23bdfb2e to your computer and use it in GitHub Desktop.
Save peterberkenbosch/7f2f5a3bfd7c23bdfb2e to your computer and use it in GitHub Desktop.
Customize the serializer
# app/serializers/my_shipment_serializer.rb
class MyShipmentSerializer < Spree::Hub::ShipmentSerializer
attributes :order_token
def order_token
object.order.token
end
end
# app/models/spree/shipment_decorator.rb
Spree::Shipment.hub_serializer = "MyShipmentSerializer"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment