summaryrefslogtreecommitdiff
path: root/app/helpers/auto_devops_helper.rb
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