From 5c2de4dfc95293a7965ff8cf980a310922fc4c05 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 16 Jul 2012 16:42:23 +0000 Subject: Adds Attachment#title. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10012 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/attachment.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app') diff --git a/app/models/attachment.rb b/app/models/attachment.rb index 0dda33023..9aeee07d0 100644 --- a/app/models/attachment.rb +++ b/app/models/attachment.rb @@ -137,6 +137,14 @@ class Attachment < ActiveRecord::Base File.join(self.class.storage_path, disk_filename.to_s) end + def title + title = filename.to_s + if description.present? + title << " (#{description})" + end + title + end + def increment_download increment!(:downloads) end -- cgit v1.2.3