debian-mirror-gitlab/app/models/users_statistics.rb
2020-04-08 14:13:33 +05:30

15 lines
331 B
Ruby

# 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