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

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

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

  include Packages::Debian::ComponentFile
end