summaryrefslogtreecommitdiff
path: root/app/helpers/suggest_pipeline_helper.rb
blob: aa67f0ea7702b049d2470f254675f30d988a1b9c (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module SuggestPipelineHelper
  def should_suggest_gitlab_ci_yml?
    Feature.enabled?(:suggest_pipeline) &&
      current_user &&
      params[:suggest_gitlab_ci_yml] == 'true'
  end
end