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

dashboard.rb « admin « page « gitlab « lib « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1a732f8fac13b7e4398ff9720a499da8384124f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module Page
    module Admin
      class Dashboard < Chemlab::Page
        path '/admin'

        h2 :users_in_license
        h2 :billable_users
        h3 :number_of_users
      end
    end
  end
end