debian-mirror-gitlab/app/controllers/admin/dashboard_controller.rb

30 lines
881 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class Admin::DashboardController < Admin::ApplicationController
2018-10-15 14:42:47 +05:30
include CountHelper
2019-12-21 20:55:43 +05:30
helper_method :show_license_breakdown?
2018-10-15 14:42:47 +05:30
2019-12-04 20:38:33 +05:30
COUNTED_ITEMS = [Project, User, Group].freeze
2018-11-08 19:23:39 +05:30
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2014-09-02 18:07:02 +05:30
def index
2018-11-08 19:23:39 +05:30
@counts = Gitlab::Database::Count.approximate_counts(COUNTED_ITEMS)
2018-03-17 18:26:18 +05:30
@projects = Project.order_id_desc.without_deleted.with_route.limit(10)
@users = User.order_id_desc.limit(10)
@groups = Group.order_id_desc.with_route.limit(10)
2020-04-08 14:13:33 +05:30
@notices = Gitlab::ConfigChecker::PumaRuggedChecker.check
2020-05-24 23:13:21 +05:30
@notices += Gitlab::ConfigChecker::ExternalDatabaseChecker.check
2014-09-02 18:07:02 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2019-12-21 20:55:43 +05:30
2020-04-22 19:07:51 +05:30
def stats
@users_statistics = UsersStatistics.latest
end
2019-12-21 20:55:43 +05:30
def show_license_breakdown?
false
end
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
Admin::DashboardController.prepend_if_ee('EE::Admin::DashboardController')