summaryrefslogtreecommitdiff
path: root/app/models/namespace/root_storage_statistics.rb
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