2013-01-20 06:20:50 -05:00
|
|
|
class Admin::DashboardController < Admin::ApplicationController
|
2018-05-16 02:06:55 -04:00
|
|
|
include CountHelper
|
|
|
|
|
2018-05-25 17:28:16 -04:00
|
|
|
COUNTED_ITEMS = [Project, User, Group, ForkedProjectLink, Issue, MergeRequest,
|
|
|
|
Note, Snippet, Key, Milestone].freeze
|
|
|
|
|
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
|
|
|
|
end
|