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: defd87d6bbe620991e9f7158058780f3149acf72 (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
      namespace_project_wiki_path(project.namespace, project, :home)
    end
  end
end