Files
openfoodnetwork/app/controllers/spree/admin/zones_controller.rb
Luis Ramos e52937c113 Use rubocop auto correct to add frozen string literal to all files
This is an unsafe auto corection, we will need to trust our build here
2021-06-17 23:07:26 +01:00

40 lines
938 B
Ruby

# frozen_string_literal: true
module Spree
module Admin
class ZonesController < ::Admin::ResourceController
before_action :load_data, except: [:index]
def new
@zone.zone_members.build
end
protected
def collection
params[:q] ||= {}
params[:q][:s] ||= "ascend_by_name"
@search = super.ransack(params[:q])
@zones = @search.result.page(params[:page]).per(Spree::Config[:orders_per_page])
end
def load_data
@countries = Country.order(:name)
@states = State.order(:name)
@zones = Zone.order(:name)
end
def permitted_resource_params
params.require(:zone).permit(
:name, :description, :default_tax, :kind,
zone_members_attributes: [:id, :zoneable_id, :zoneable_type, :_destroy]
)
end
def location_after_save
edit_object_url(@zone)
end
end
end
end