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

sourcegraph_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25d7b209b45d813aa93e5fbdac5302cfbc49a020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module SourcegraphHelper
  def sourcegraph_url_message
    message =
      if Gitlab::CurrentSettings.sourcegraph_url_is_com?
        s_('SourcegraphPreferences|Uses %{linkStart}Sourcegraph.com%{linkEnd}.').html_safe
      else
        s_('SourcegraphPreferences|Uses a custom %{linkStart}Sourcegraph instance%{linkEnd}.').html_safe
      end

    experimental_message =
      if Gitlab::Sourcegraph.feature_conditional?
        s_("SourcegraphPreferences|This feature is experimental and currently limited to certain projects.")
      elsif Gitlab::CurrentSettings.sourcegraph_public_only
        s_("SourcegraphPreferences|This feature is experimental and limited to public projects.")
      else
        s_("SourcegraphPreferences|This feature is experimental.")
      end

    "#{message} #{experimental_message}"
  end
end