Project

General

Profile

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

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

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

    
6
      included do
7
        belongs_to :job, :class_name => 'ForemanPipeline::Job', :foreign_key => :content_view_id, :primary_key => :content_view_id
8
      end
9

    
10
    end
11
  end
12
end