debian-mirror-gitlab/app/models/packages/debian/group_distribution.rb
2022-03-02 08:16:31 +05:30

15 lines
316 B
Ruby

# frozen_string_literal: true
class Packages::Debian::GroupDistribution < ApplicationRecord
def self.container_type
:group
end
include Packages::Debian::Distribution
def packages
Packages::Package
.for_projects(group.all_projects.public_only)
.with_debian_codename(codename)
end
end