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: 593749bf01989d81a39d14881bbcb84e35f63a37 (plain)
1
2
3
4
5
6
7
module Storage
  module LegacyRepository
    extend ActiveSupport::Concern

    delegate :disk_path, to: :project
  end
end