Class: Spree::Api::ReturnAuthorizationsController
- Inherits:
-
BaseController
- Object
- ActionController::Base
- BaseController
- Spree::Api::ReturnAuthorizationsController
- Defined in:
- app/controllers/spree/api/return_authorizations_controller.rb
Instance Attribute Summary
Attributes inherited from BaseController
Instance Method Summary collapse
- #cancel ⇒ Object
- #create ⇒ Object
- #destroy ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #show ⇒ Object
- #update ⇒ Object
Instance Method Details
#cancel ⇒ Object
60 61 62 63 64 65 66 67 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 60 def cancel = @order..accessible_by(current_ability, :update).find(params[:id]) if .cancel respond_with , default_template: :show else invalid_resource!() end end |
#create ⇒ Object
11 12 13 14 15 16 17 18 19 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 11 def create :create, ReturnAuthorization = @order..build() if .save respond_with(, status: 201, default_template: :show) else invalid_resource!() end end |
#destroy ⇒ Object
21 22 23 24 25 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 21 def destroy = @order..accessible_by(current_ability, :destroy).find(params[:id]) .destroy respond_with(, status: 204) end |
#index ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 27 def index :admin, ReturnAuthorization = @order. . accessible_by(current_ability). ransack(params[:q]). result = paginate() respond_with() end |
#new ⇒ Object
41 42 43 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 41 def new :admin, ReturnAuthorization end |
#show ⇒ Object
45 46 47 48 49 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 45 def show :admin, ReturnAuthorization = @order..accessible_by(current_ability, :show).find(params[:id]) respond_with() end |
#update ⇒ Object
51 52 53 54 55 56 57 58 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 51 def update = @order..accessible_by(current_ability, :update).find(params[:id]) if .update() respond_with(, default_template: :show) else invalid_resource!() end end |