Class: Spree::Api::TaxonomiesController

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

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Instance Method Details

#createObject



18
19
20
21
22
23
24
25
26
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 18

def create
  authorize! :create, Taxonomy
  @taxonomy = Spree::Taxonomy.new(taxonomy_params)
  if @taxonomy.save
    respond_with(@taxonomy, status: 201, default_template: :show)
  else
    invalid_resource!(@taxonomy)
  end
end

#destroyObject



37
38
39
40
41
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 37

def destroy
  authorize! :destroy, taxonomy
  taxonomy.destroy
  respond_with(taxonomy, status: 204)
end

#indexObject



6
7
8
9
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 6

def index
  @taxonomies = paginate(taxonomies)
  respond_with(@taxonomies)
end

#newObject



11
12
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 11

def new
end

#showObject



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

def show
  respond_with(taxonomy)
end

#updateObject



28
29
30
31
32
33
34
35
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 28

def update
  authorize! :update, taxonomy
  if taxonomy.update(taxonomy_params)
    respond_with(taxonomy, status: 200, default_template: :show)
  else
    invalid_resource!(taxonomy)
  end
end