summaryrefslogtreecommitdiffstats
path: root/lib/puppet/rails/source_file.rb
blob: 6a691893a3b7041cf397eef5a76e890491ab7ed2 (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