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

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

module QA
  module Page
    module Alert
      class AutoDevopsAlert < Page::Base
        view 'app/views/shared/_auto_devops_implicitly_enabled_banner.html.haml' do
          element :auto_devops_banner_content
        end
      end
    end
  end
end