Class: Spree::Api::V1::ImagesController

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

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Methods inherited from BaseController

#content_type, #map_nested_attributes_keys, #permitted_line_item_attributes

Methods included from ControllerSetup

included

Instance Method Details

#createObject



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

def create
  authorize! :create, Image
  @image = scope.images.new(image_params)
  if @image.save
    respond_with(@image, status: 201, default_template: :show)
  else
    invalid_resource!(@image)
  end
end

#destroyObject



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

def destroy
  @image = scope.images.accessible_by(current_ability, :destroy).find(params[:id])
  @image.destroy
  respond_with(@image, status: 204)
end

#indexObject



5
6
7
8
# File 'app/controllers/spree/api/v1/images_controller.rb', line 5

def index
  @images = scope.images.accessible_by(current_ability, :read)
  respond_with(@images)
end

#newObject



15
16
# File 'app/controllers/spree/api/v1/images_controller.rb', line 15

def new
end

#showObject



10
11
12
13
# File 'app/controllers/spree/api/v1/images_controller.rb', line 10

def show
  @image = Image.accessible_by(current_ability, :read).find(params[:id])
  respond_with(@image)
end

#updateObject



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

def update
  @image = scope.images.accessible_by(current_ability, :update).find(params[:id])
  if @image.update_attributes(image_params)
    respond_with(@image, default_template: :show)
  else
    invalid_resource!(@image)
  end
end