Welcome to mirror list, hosted at ThFree Co, Russian Federation.

count_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24ee62e68ba45db2b899108bbd3acc1c5fa3204b (plain)
1
2
3
4
5
module CountHelper
  def approximate_count_with_delimiters(model)
    number_with_delimiter(Gitlab::Database::Count.approximate_count(model))
  end
end