2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-01-20 06:20:50 -05:00
|
|
|
class Admin::DashboardController < Admin::ApplicationController
|
2018-05-16 02:06:55 -04:00
|
|
|
include CountHelper
|
|
|
|
|
2018-08-31 13:16:34 -04:00
|
|
|
COUNTED_ITEMS = [Project, User, Group, ForkNetworkMember, ForkNetwork, Issue,
|
|
|
|
MergeRequest, Note, Snippet, Key, Milestone].freeze
|
2018-05-25 17:28:16 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2012-04-20 12:41:49 -04:00
|
|
|
def index
|
2018-05-25 17:28:16 -04:00
|
|
|
@counts = Gitlab::Database::Count.approximate_counts(COUNTED_ITEMS)
|
2017-08-15 06:27:37 -04:00
|
|
|
@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)
|
2012-04-20 12:41:49 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2012-04-20 12:41:49 -04:00
|
|
|
end
|