Class: Spree::Api::InventoryUnitsController
- Inherits:
- 
      BaseController
      
        - Object
- ActionController::Base
- BaseController
- Spree::Api::InventoryUnitsController
 
- Defined in:
- app/controllers/spree/api/inventory_units_controller.rb
Instance Attribute Summary
Attributes inherited from BaseController
Instance Method Summary collapse
Instance Method Details
#show ⇒ Object
| 6 7 8 9 | # File 'app/controllers/spree/api/inventory_units_controller.rb', line 6 def show @inventory_unit = inventory_unit respond_with(@inventory_unit) end | 
#update ⇒ Object
| 11 12 13 14 15 16 17 18 19 20 21 22 | # File 'app/controllers/spree/api/inventory_units_controller.rb', line 11 def update :update, inventory_unit.order inventory_unit.transaction do if inventory_unit.update_attributes(inventory_unit_params) fire render :show, :status => 200 else invalid_resource!(inventory_unit) end end end |