summaryrefslogtreecommitdiffstats
path: root/lib/puppet/rails/source_file.rb
blob: de95f755a4600049cd11ca23233a63af4258c91f (plain)
1
2
3
4
5
6
7
8
class Puppet::Rails::SourceFile < ActiveRecord::Base
    has_one :host
    has_one :resource

    def to_label
      "#{self.filename}"
    end
end