Sha256: d74f44749f9d7569862cd98ad08b1f0de26569e2722976cfa9e3b8d28f0eb27c
Contents?: true
Size: 365 Bytes
Versions: 11
Compression:
Stored size: 365 Bytes
Contents
module Spree module Admin class TaxRatesController < ResourceController before_action :load_data private def load_data @available_zones = Spree::Zone.order(:name) @available_categories = Spree::TaxCategory.order(:name) @calculators = Rails.application.config.spree.calculators.tax_rates end end end end
Version data entries
11 entries across 11 versions & 1 rubygems