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

suggest_pipeline_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0a12f0e268c77490b2bca53addce3d5cb177bc7 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module SuggestPipelineHelper
  def should_suggest_gitlab_ci_yml?
    current_user && params[:suggest_gitlab_ci_yml] == 'true'
  end
end