Start detecting install problems and report them on the admin dashboard. This commit adds check for Rails.env

This commit is contained in:
Neil Lalonde
2013-03-19 23:18:00 -04:00
parent 04c6087ef0
commit 1e4dd3ea0c
9 changed files with 99 additions and 7 deletions

View File

@ -2,12 +2,7 @@
class Admin::DashboardController < Admin::AdminController
def index
render_json_dump({
reports: ['visits', 'signups', 'topics', 'posts', 'flags', 'users_by_trust_level', 'likes', 'emails'].map { |type| Report.find(type) },
total_users: User.count
}.merge(
SiteSetting.version_checks? ? {version_check: DiscourseUpdates.check_version} : {}
))
render_json_dump(AdminDashboardData.fetch)
end
end