Sha256: 30bf36df3faa40f820e722b6d578254245041e7306b3865e8337b5b9b1e4a245

Contents?: true

Size: 996 Bytes

Versions: 8

Compression:

Stored size: 996 Bytes

Contents

module Katello
  class AnsibleCollection < ApplicationRecord
    include Concerns::PulpDatabaseUnit

    self.table_name = 'katello_ansible_collections'

    CONTENT_TYPE = 'ansible collection'.freeze

    has_many :repository_ansible_collections, :class_name => "Katello::RepositoryAnsibleCollection", :dependent => :destroy, :inverse_of => :ansible_collection, :foreign_key => :ansible_collection_id
    has_many :repositories, :through => :repository_ansible_collections, :class_name => "Katello::Repository"

    scoped_search :on => :name, :complete_value => true
    scoped_search :on => :namespace, :complete_value => true
    scoped_search :on => :version, :complete_value => true

    def self.default_sort
      order(:name)
    end

    def self.repository_association_class
      RepositoryAnsibleCollection
    end

    def self.unit_id_field
      'ansible_collection_id'
    end

    def self.total_for_repositories(repos)
      self.in_repositories(repos).count
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
katello-3.13.4 app/models/katello/ansible_collection.rb
katello-3.13.3 app/models/katello/ansible_collection.rb
katello-3.13.2 app/models/katello/ansible_collection.rb
katello-3.13.1 app/models/katello/ansible_collection.rb
katello-3.13.0 app/models/katello/ansible_collection.rb
katello-3.13.0.rc2.1 app/models/katello/ansible_collection.rb
katello-3.13.0.rc2 app/models/katello/ansible_collection.rb
katello-3.13.0.rc1 app/models/katello/ansible_collection.rb