summaryrefslogtreecommitdiff
path: root/app/helpers/external_wiki_helper.rb
blob: 1f3401f290637587be4ee512738b864885220569 (plain)
1
2
3
4
5
6
7
8
9
10
11
module ExternalWikiHelper
  def get_project_wiki_path(project)
    external_wiki_service = project.services.
      find { |service| service.to_param == 'external_wiki' }
    if external_wiki_service.present? && external_wiki_service.active?
      external_wiki_service.properties['external_wiki_url']
    else
      namespace_project_wiki_path(project.namespace, project, :home)
    end
  end
end