mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-29 06:21:16 +00:00
18 lines
433 B
Ruby
18 lines
433 B
Ruby
module Admin
|
|
class ContentsController < Spree::Admin::BaseController
|
|
def edit
|
|
@preferences = [:home_tagline_cta]
|
|
end
|
|
|
|
def update
|
|
params.each do |name, value|
|
|
next unless ContentConfig.has_preference? name
|
|
ContentConfig[name] = value
|
|
end
|
|
flash[:success] = t(:successfully_updated, :resource => "Your content")
|
|
|
|
redirect_to main_app.edit_admin_content_path
|
|
end
|
|
end
|
|
end
|