summaryrefslogtreecommitdiff
path: root/app/models/concerns/storage/legacy_project_wiki.rb
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