Project

General

Profile

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

foreman_pipeline / app / models / foreman_pipeline / concerns / hostgroup_extension.rb @ be52ca64

1 be52ca64 Ondrej Prazak
module ForemanPipeline
2 430dff62 Ondrej Prazak
  module Concerns
3
    module HostgroupExtension
4
      extend ActiveSupport::Concern
5
6
      included do
7 be52ca64 Ondrej Prazak
        has_many :jobs, :class_name => 'ForemanPipeline::Job', :inverse_of => :hostgroup        
8 430dff62 Ondrej Prazak
      end
9
      
10
    end
11
  end
12
end