Class: Spree::Api::V1::ZonesController

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

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Methods inherited from BaseController

#content_type, #permitted_line_item_attributes

Methods included from ControllerSetup

included

Instance Method Details

#createObject



5
6
7
8
9
10
11
12
13
# File 'app/controllers/spree/api/v1/zones_controller.rb', line 5

def create
  authorize! :create, Zone
  @zone = Spree::Zone.new(zone_params)
  if @zone.save
    respond_with(@zone, status: 201, default_template: :show)
  else
    invalid_resource!(@zone)
  end
end

#destroyObject



15
16
17
18
19
# File 'app/controllers/spree/api/v1/zones_controller.rb', line 15

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

#indexObject



21
22
23
24
# File 'app/controllers/spree/api/v1/zones_controller.rb', line 21

def index
  @zones = Zone.accessible_by(current_ability, :read).order('name ASC').ransack(params[:q]).result.page(params[:page]).per(params[:per_page])
  respond_with(@zones)
end

#showObject



26
27
28
# File 'app/controllers/spree/api/v1/zones_controller.rb', line 26

def show
  respond_with(zone)
end

#updateObject



30
31
32
33
34
35
36
37
# File 'app/controllers/spree/api/v1/zones_controller.rb', line 30

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