Welcome to mirror list, hosted at ThFree Co, Russian Federation.

legacy_repository.rb « storage « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb93d0fc7f11f4fa9aa375a33412935522942e87 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Storage
  module LegacyRepository
    extend ActiveSupport::Concern

    delegate :disk_path, to: :project
  end
end