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

auto_devops_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ff38f86b5f8a28df5711402919c6e048f507ec2 (plain)
1
2
3
4
5
6
7
module AutoDevopsHelper
  def show_auto_devops_callout?(project)
    show_callout?('auto_devops_settings_dismissed') &&
      can?(current_user, :admin_pipeline, project) &&
      project.has_auto_devops_implicitly_disabled?
  end
end