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: a377fa1e5de307ae5634b60ab9c143e7bb6a5de7 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Storage
  module LegacyProjectWiki
    extend ActiveSupport::Concern

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