mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 11:58:27 +00:00
Followup 4aea12fdcb21216a528451c0f8803e02dff24998 In certain config areas (like About) we want to be able to fetch specific site settings by name. In this case, sometimes we need to be able to fetch hidden settings, in cases where a config area is still experimental. Splitting out a different endpoint for this purpose allows us to be stricter with what we return for config areas without affecting the main site settings UI, revealing hidden settings before they are ready.
28 lines
852 B
Ruby
28 lines
852 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::Config::SiteSettingsController < Admin::AdminController
|
|
ADMIN_CONFIG_AREA_ALLOWLISTED_HIDDEN_SETTINGS = %i[
|
|
extended_site_description
|
|
about_banner_image
|
|
community_owner
|
|
]
|
|
|
|
# This endpoint is intended to be used only for admin config areas,
|
|
# for a specific collection of site settings. The admin site settings
|
|
# UI itself uses the Admin::SiteSettingsController#index endpoint,
|
|
# which also supports a `category` and `plugin` filter.
|
|
def index
|
|
params.require(:filter_names)
|
|
|
|
render_json_dump(
|
|
site_settings:
|
|
SiteSetting.all_settings(
|
|
filter_names: params[:filter_names],
|
|
include_locale_setting: false,
|
|
include_hidden: true,
|
|
filter_allowed_hidden: ADMIN_CONFIG_AREA_ALLOWLISTED_HIDDEN_SETTINGS,
|
|
),
|
|
)
|
|
end
|
|
end
|