Class: Spree::Api::V2::Storefront::CustomerNotificationsController
- Inherits:
-
ResourceController
- Object
- ResourceController
- Spree::Api::V2::Storefront::CustomerNotificationsController
- Defined in:
- app/controllers/spree/api/v2/storefront/customer_notifications_controller.rb
Instance Method Summary collapse
Instance Method Details
#resource_serializer ⇒ Object
13 14 15 |
# File 'app/controllers/spree/api/v2/storefront/customer_notifications_controller.rb', line 13 def resource_serializer Spree::V2::Storefront::CustomerNotificationSerializer end |
#show ⇒ Object
8 9 10 11 |
# File 'app/controllers/spree/api/v2/storefront/customer_notifications_controller.rb', line 8 def show customer_notification = SpreeCmCommissioner::CustomerNotification.find(params[:id]) render_serialized_payload { serialize_resource(customer_notification) } end |