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

legacy_project_wiki.rb « storage « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff82cb0ffa9f758631a9e6c61dc576d0999c0f44 (plain)
1
2
3
4
5
6
7
8
9
module Storage
  module LegacyProjectWiki
    extend ActiveSupport::Concern

    def disk_path
      project.disk_path + '.wiki'
    end
  end
end