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

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

class Namespace::RootStorageStatistics < ApplicationRecord
  self.primary_key = :namespace_id

  belongs_to :namespace
  has_one :route, through: :namespace

  delegate :all_projects, to: :namespace
end