mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
293 B
Ruby
14 lines
293 B
Ruby
module Admin
|
|
class InvoiceSettingsController < Spree::Admin::BaseController
|
|
def update
|
|
Spree::Config.set(params[:preferences])
|
|
|
|
respond_to do |format|
|
|
format.html {
|
|
redirect_to main_app.edit_admin_invoice_settings_path
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|