ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged...
[gitredmine.git] / app / models / journal.rb
blob331d7a7294224d6ed0cb58f41307da07d8874a9a
1 # redMine - project management software
2 # Copyright (C) 2006  Jean-Philippe Lang
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 class Journal < ActiveRecord::Base
19   belongs_to :journalized, :polymorphic => true
20   # added as a quick fix to allow eager loading of the polymorphic association
21   # since always associated to an issue, for now
22   belongs_to :issue, :foreign_key => :journalized_id
23   
24   belongs_to :user
25   has_many :details, :class_name => "JournalDetail", :dependent => :delete_all
26   
27   acts_as_searchable :columns => 'notes',
28                      :include => :issue,
29                      :project_key => "#{Issue.table_name}.project_id",
30                      :date_column => "#{Issue.table_name}.created_on"
31   
32   acts_as_event :title => Proc.new {|o| "#{o.issue.tracker.name} ##{o.issue.id}: #{o.issue.subject}"},
33                 :description => :notes,
34                 :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.issue.id}}
36   def save
37     # Do not save an empty journal
38     (details.empty? && notes.blank?) ? false : super
39   end
40 end