mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 13:09:18 +08:00
433fadbd52
Toggle the button to enable the experimental site setting from "What's new" announcement. The toggle button is displayed when: - site setting exists and is boolean; - potentially required plugin is enabled.
69 lines
1.7 KiB
Ruby
69 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::DashboardController < Admin::StaffController
|
|
def index
|
|
data = AdminDashboardIndexData.fetch_cached_stats
|
|
|
|
if SiteSetting.version_checks?
|
|
data.merge!(version_check: DiscourseUpdates.check_version.as_json)
|
|
end
|
|
|
|
render json: data
|
|
end
|
|
|
|
def moderation
|
|
end
|
|
|
|
def security
|
|
end
|
|
|
|
def reports
|
|
end
|
|
|
|
def general
|
|
render json: AdminDashboardGeneralData.fetch_cached_stats
|
|
end
|
|
|
|
def problems
|
|
ProblemCheck.realtime.run_all
|
|
|
|
render json: { problems: serialize_data(AdminNotice.problem.all, AdminNoticeSerializer) }
|
|
end
|
|
|
|
def new_features
|
|
new_features = DiscourseUpdates.new_features
|
|
|
|
if current_user.admin? && most_recent = new_features&.first
|
|
DiscourseUpdates.bump_last_viewed_feature_date(current_user.id, most_recent["created_at"])
|
|
end
|
|
|
|
data = {
|
|
new_features: new_features,
|
|
has_unseen_features: DiscourseUpdates.has_unseen_features?(current_user.id),
|
|
release_notes_link: AdminDashboardGeneralData.fetch_cached_stats["release_notes_link"],
|
|
}
|
|
|
|
mark_new_features_as_seen
|
|
|
|
render json: data
|
|
end
|
|
|
|
def toggle_feature
|
|
Experiments::Toggle.call(service_params) do
|
|
on_success { render(json: success_json) }
|
|
on_failure { render(json: failed_json, status: 422) }
|
|
on_failed_policy(:current_user_is_admin) { raise Discourse::InvalidAccess }
|
|
on_failed_policy(:setting_is_available) { raise Discourse::InvalidAccess }
|
|
on_failed_contract do |contract|
|
|
render(json: failed_json.merge(errors: contract.errors.full_messages), status: 400)
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def mark_new_features_as_seen
|
|
DiscourseUpdates.mark_new_features_as_seen(current_user.id)
|
|
end
|
|
end
|