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



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

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



40
41
42
43
44
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 40

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

#indexObject



4
5
6
7
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 4

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

#jstreeObject

Because JSTree wants parameters in a slightly different format



17
18
19
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 17

def jstree
  show
end

#newObject



9
10
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 9

def new
end

#showObject



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

def show
  respond_with(taxonomy)
end

#updateObject



31
32
33
34
35
36
37
38
# File 'app/controllers/spree/api/taxonomies_controller.rb', line 31

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