summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/repository.rb
blob: 034b0d09c1c07457d56328cac228aad9c7096f2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module QA
  module Page
    module Project
      module Settings
        class Repository < Page::Base
          include Common

          def expand_deploy_keys(&block)
            expand('.qa-expand-deploy-keys') do
              DeployKeys.perform(&block)
            end
          end
        end
      end
    end
  end
end