10 lines
147 B
Ruby
10 lines
147 B
Ruby
|
module Storage
|
||
|
module LegacyProjectWiki
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
def disk_path
|
||
|
project.disk_path + '.wiki'
|
||
|
end
|
||
|
end
|
||
|
end
|