summaryrefslogtreecommitdiffstats
path: root/lib/puppet/rails/source_file.rb
diff options
context:
space:
mode:
authorBlake Barnett <bdb@bdb-debvm1.stanford.edu>2008-02-28 22:55:55 -0800
committerBlake Barnett <bdb@bdb-debvm1.stanford.edu>2008-02-28 22:55:55 -0800
commit9b07758e02fc7347cc4a39ca17fc76a3f95d584f (patch)
tree21f0e2612029b55603ac217334ec3d1369c68096 /lib/puppet/rails/source_file.rb
parent5d3dd9e718cbe69b2fe7f37bc3ec422c88a1080b (diff)
downloadpuppet-9b07758e02fc7347cc4a39ca17fc76a3f95d584f.tar.gz
puppet-9b07758e02fc7347cc4a39ca17fc76a3f95d584f.tar.xz
puppet-9b07758e02fc7347cc4a39ca17fc76a3f95d584f.zip
* Tweaks for puppetshow UI cleanup
Diffstat (limited to 'lib/puppet/rails/source_file.rb')
-rw-r--r--lib/puppet/rails/source_file.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/puppet/rails/source_file.rb b/lib/puppet/rails/source_file.rb
index 51d1b1fb5..3ccf87ac6 100644
--- a/lib/puppet/rails/source_file.rb
+++ b/lib/puppet/rails/source_file.rb
@@ -1,5 +1,8 @@
class Puppet::Rails::SourceFile < ActiveRecord::Base
has_one :host
- has_one :puppet_class
has_one :resource
+
+ def to_label
+ "#{self.filename}"
+ end
end