Bring tax_settings from spree_backend to ofn

This commit is contained in:
luisramos0
2019-09-20 15:46:33 +01:00
parent 6855e5c8f4
commit 0e8765636b

View File

@@ -0,0 +1,15 @@
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