gitlab-org--gitlab-foss/app/models/concerns/storage/legacy_project_wiki.rb
2018-08-07 00:37:36 -07:00

11 lines
178 B
Ruby

# frozen_string_literal: true
module Storage
module LegacyProjectWiki
extend ActiveSupport::Concern
def disk_path
project.disk_path + '.wiki'
end
end
end