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

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