2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
15 lines
579 B
Ruby
15 lines
579 B
Ruby
class Admin::DashboardController < Admin::ApplicationController
|
|
include CountHelper
|
|
|
|
COUNTED_ITEMS = [Project, User, Group, ForkedProjectLink, Issue, MergeRequest,
|
|
Note, Snippet, Key, Milestone].freeze
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def index
|
|
@counts = Gitlab::Database::Count.approximate_counts(COUNTED_ITEMS)
|
|
@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)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|