2024-06-03 15:18:14 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::Config::AboutController < Admin::AdminController
|
|
|
|
def index
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2024-07-01 10:40:37 +08:00
|
|
|
settings_map = {}
|
|
|
|
if general_settings = params[:general_settings]
|
|
|
|
settings_map[:title] = general_settings[:name]
|
|
|
|
settings_map[:site_description] = general_settings[:summary]
|
|
|
|
settings_map[:about_banner_image] = general_settings[:about_banner_image]
|
|
|
|
|
|
|
|
settings_map[:extended_site_description] = general_settings[:extended_description]
|
|
|
|
if settings_map[:extended_site_description].present?
|
|
|
|
settings_map[:extended_site_description_cooked] = PrettyText.markdown(
|
|
|
|
settings_map[:extended_site_description],
|
|
|
|
)
|
|
|
|
else
|
|
|
|
settings_map[:extended_site_description_cooked] = ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if contact_information = params[:contact_information]
|
|
|
|
settings_map[:community_owner] = contact_information[:community_owner]
|
|
|
|
settings_map[:contact_email] = contact_information[:contact_email]
|
|
|
|
settings_map[:contact_url] = contact_information[:contact_url]
|
|
|
|
settings_map[:site_contact_username] = contact_information[:contact_username]
|
|
|
|
settings_map[:site_contact_group_name] = contact_information[:contact_group_name]
|
|
|
|
end
|
|
|
|
|
|
|
|
if your_organization = params[:your_organization]
|
|
|
|
settings_map[:company_name] = your_organization[:company_name]
|
|
|
|
settings_map[:governing_law] = your_organization[:governing_law]
|
|
|
|
settings_map[:city_for_disputes] = your_organization[:city_for_disputes]
|
|
|
|
end
|
|
|
|
|
|
|
|
settings_map.each do |name, value|
|
2024-09-04 00:30:22 +08:00
|
|
|
UpdateSiteSetting.call(
|
|
|
|
guardian: guardian,
|
2024-07-01 10:40:37 +08:00
|
|
|
setting_name: name,
|
|
|
|
new_value: value,
|
|
|
|
allow_changing_hidden: %i[
|
|
|
|
extended_site_description
|
|
|
|
extended_site_description_cooked
|
|
|
|
about_banner_image
|
|
|
|
community_owner
|
|
|
|
].include?(name),
|
|
|
|
)
|
|
|
|
end
|
|
|
|
render json: success_json
|
2024-06-03 15:18:14 +08:00
|
|
|
end
|
|
|
|
end
|