15b878e27e
Partially addresses #47424.
9 lines
155 B
Ruby
9 lines
155 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Storage
|
|
module LegacyRepository
|
|
extend ActiveSupport::Concern
|
|
|
|
delegate :disk_path, to: :project
|
|
end
|
|
end
|