Class: Spree::Api::ZonesController
Instance Attribute Summary
#current_api_user
Instance Method Summary
collapse
#map_nested_attributes_keys, #set_jsonp_format
included
Instance Method Details
#create ⇒ Object
15
16
17
18
19
20
21
22
23
|
# File 'app/controllers/spree/api/zones_controller.rb', line 15
def create
authorize! :create, Zone
@zone = Zone.new(map_nested_attributes_keys(Spree::Zone, params[:zone]))
if @zone.save
respond_with(@zone, :status => 201, :default_template => :show)
else
invalid_resource!(@zone)
end
end
|
#destroy ⇒ Object
34
35
36
37
38
|
# File 'app/controllers/spree/api/zones_controller.rb', line 34
def destroy
authorize! :delete, Zone
zone.destroy
respond_with(zone, :status => 204)
end
|
#index ⇒ Object
6
7
8
9
|
# File 'app/controllers/spree/api/zones_controller.rb', line 6
def index
@zones = Zone.order('name ASC').ransack(params[:q]).result.page(params[:page]).per(params[:per_page])
respond_with(@zones)
end
|
#show ⇒ Object
11
12
13
|
# File 'app/controllers/spree/api/zones_controller.rb', line 11
def show
respond_with(zone)
end
|
#update ⇒ Object
25
26
27
28
29
30
31
32
|
# File 'app/controllers/spree/api/zones_controller.rb', line 25
def update
authorize! :update, Zone
if zone.update_attributes(map_nested_attributes_keys(Spree::Zone, params[:zone]))
respond_with(zone, :status => 200, :default_template => :show)
else
invalid_resource!(zone)
end
end
|