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 @return_authorization = @order..accessible_by(current_ability, :update).find(params[:id]) if @return_authorization.cancel respond_with @return_authorization, default_template: :show else invalid_resource!(@return_authorization) 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 @return_authorization = @order..build() if @return_authorization.save respond_with(@return_authorization, status: 201, default_template: :show) else invalid_resource!(@return_authorization) end end |
#destroy ⇒ Object
21 22 23 24 25 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 21 def destroy @return_authorization = @order..accessible_by(current_ability, :destroy).find(params[:id]) @return_authorization.destroy respond_with(@return_authorization, 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 @return_authorizations = @order. . accessible_by(current_ability). ransack(params[:q]). result @return_authorizations = paginate(@return_authorizations) respond_with(@return_authorizations) 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 @return_authorization = @order..accessible_by(current_ability, :show).find(params[:id]) respond_with(@return_authorization) end |
#update ⇒ Object
51 52 53 54 55 56 57 58 |
# File 'app/controllers/spree/api/return_authorizations_controller.rb', line 51 def update @return_authorization = @order..accessible_by(current_ability, :update).find(params[:id]) if @return_authorization.update() respond_with(@return_authorization, default_template: :show) else invalid_resource!(@return_authorization) end end |