mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
16 lines
317 B
Ruby
16 lines
317 B
Ruby
module Spree
|
|
module Admin
|
|
class TaxSettingsController < Spree::Admin::BaseController
|
|
def update
|
|
Spree::Config.set(params[:preferences])
|
|
|
|
respond_to do |format|
|
|
format.html {
|
|
redirect_to edit_admin_tax_settings_path
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|