Class: Spree::Api::VariantsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/spree/api/variants_controller.rb

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Methods inherited from BaseController

#map_nested_attributes_keys, #set_jsonp_format

Methods included from ControllerSetup

included

Instance Method Details

#createObject



22
23
24
25
26
27
28
29
30
# File 'app/controllers/spree/api/variants_controller.rb', line 22

def create
  authorize! :create, Variant
  @variant = scope.new(params[:variant])
  if @variant.save
    respond_with(@variant, :status => 201, :default_template => :show)
  else
    invalid_resource!(@variant)
  end
end

#destroyObject



42
43
44
45
46
47
# File 'app/controllers/spree/api/variants_controller.rb', line 42

def destroy
  authorize! :delete, Variant
  @variant = scope.find(params[:id])
  @variant.destroy
  respond_with(@variant, :status => 204)
end

#indexObject



8
9
10
11
12
# File 'app/controllers/spree/api/variants_controller.rb', line 8

def index
  @variants = scope.includes(:option_values).ransack(params[:q]).result.
    page(params[:page]).per(params[:per_page])
  respond_with(@variants)
end

#newObject



19
20
# File 'app/controllers/spree/api/variants_controller.rb', line 19

def new
end

#showObject



14
15
16
17
# File 'app/controllers/spree/api/variants_controller.rb', line 14

def show
  @variant = scope.includes(:option_values).find(params[:id])
  respond_with(@variant)
end

#updateObject



32
33
34
35
36
37
38
39
40
# File 'app/controllers/spree/api/variants_controller.rb', line 32

def update
  authorize! :update, Variant
  @variant = scope.find(params[:id])
  if @variant.update_attributes(params[:variant])
    respond_with(@variant, :status => 200, :default_template => :show)
  else
    invalid_resource!(@product)
  end
end