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

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

# Chemlab Page Libraries for GitLab
module Gitlab
  module Page
    module Main
      autoload :Login, 'gitlab/page/main/login'
    end

    module Subscriptions
      autoload :New, 'gitlab/page/subscriptions/new'
    end

    module Group
      module Settings
        autoload :Billing, 'gitlab/page/group/settings/billing'
      end
    end
  end
end