summaryrefslogtreecommitdiff
path: root/app/models/users_statistics.rb
blob: 5c5f62d5d872f85c089aa1e5b835742142fa0d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class UsersStatistics < ApplicationRecord
  STATISTICS_NAMES = [
    :without_groups_and_projects,
    :with_highest_role_guest,
    :with_highest_role_reporter,
    :with_highest_role_developer,
    :with_highest_role_maintainer,
    :with_highest_role_owner,
    :bots,
    :blocked
  ].freeze
end