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

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

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

  include Packages::Debian::DistributionKey
end