Project

General

Profile

Download (274 Bytes) Statistics
| Branch: | Tag: | Revision:

foreman_pipeline / app / models / foreman_pipeline / concerns / repository_extension.rb @ 9fb80abe

1
module ForemanPipeline
2
  module Concerns
3
    module RepositoryExtension
4
      extend ActiveSupport::Concern
5

    
6
      included do
7
        has_many :jobs, :class_name => 'ForemanPipeline::Job', :source => :job, :through => :content_view_repositories
8
      end
9

    
10
    end
11
  end
12
end