summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/repository.rb
blob: 437a945acebf1e3c8732c2fa76bcac38742f2317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Settings
        class Repository < Page::Base
          include Common

          view 'app/views/projects/deploy_keys/_index.html.haml' do
            element :deploy_keys_settings
          end

          view 'app/views/projects/protected_branches/shared/_index.html.haml' do
            element :protected_branches_settings
          end

          view 'app/views/projects/mirrors/_mirror_repos.html.haml' do
            element :mirroring_repositories_settings
          end

          def expand_deploy_keys(&block)
            expand_section(:deploy_keys_settings) do
              DeployKeys.perform(&block)
            end
          end

          def expand_protected_branches(&block)
            expand_section(:protected_branches_settings) do
              ProtectedBranches.perform(&block)
            end
          end

          def expand_deploy_tokens(&block)
            expand_section(:deploy_tokens_settings) do
              DeployTokens.perform(&block)
            end
          end

          def expand_mirroring_repositories(&block)
            expand_section(:mirroring_repositories_settings) do
              MirroringRepositories.perform(&block)
            end
          end
        end
      end
    end
  end
end