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

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

module ExternalWikiHelper
  def get_project_wiki_path(project)
    external_wiki_service = project.external_wiki
    if external_wiki_service
      external_wiki_service.properties['external_wiki_url']
    else
      project_wiki_path(project, :home)
    end
  end
end