summaryrefslogtreecommitdiffstats
path: root/lib/puppet/rails/fact_value.rb
blob: 45a88b2dc45d5f1c9251c7ac768c4a7b65cff5fb (plain)
1
2
3
4
5
6
7
8
9
10
class Puppet::Rails::FactValue < ActiveRecord::Base
  belongs_to :fact_name
  belongs_to :host

  def to_label
    "#{self.fact_name.name}"
  end
end

# $Id: fact_value.rb 1952 2006-12-19 05:47:57Z luke $