Sha256: 279dfc14c32c7e6a7903876f1165c089f8add9772ab856753b3a21aaa71377e3
Contents?: true
Size: 1.02 KB
Versions: 15
Compression:
Stored size: 1.02 KB
Contents
module Spree module Api class StatesController < Spree::Api::BaseController skip_before_action :set_expiry skip_before_action :check_for_user_or_api_key skip_before_action :authenticate_user def index @states = scope.ransack(params[:q]).result. includes(:country).order('name ASC') if params[:page] || params[:per_page] @states = @states.page(params[:page]).per(params[:per_page]) end state = @states.last if stale?(state) respond_with(@states) end end def show @state = scope.find(params[:id]) respond_with(@state) end private def scope if params[:country_id] @country = Spree::Country.accessible_by(current_ability, :read).find(params[:country_id]) return @country.states.accessible_by(current_ability, :read) else return Spree::State.accessible_by(current_ability, :read) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems