debian-mirror-gitlab/app/models/concerns/storage/legacy_repository.rb
2018-11-20 20:47:30 +05:30

10 lines
155 B
Ruby

# frozen_string_literal: true
module Storage
module LegacyRepository
extend ActiveSupport::Concern
delegate :disk_path, to: :project
end
end