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

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

class Packages::Debian::ProjectDistribution < ApplicationRecord
  def self.container_type
    :project
  end

  include Packages::Debian::Distribution
end