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: 8cf890b74a87dd7dcd5c74c11dd2bac3eba1c2ce (plain)
1
2
3
4
5
6
7
8
9
10
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