Use the news description as event description #933

This commit is contained in:
Felix Schäfer 2012-03-17 13:55:36 +01:00
parent df66e9b915
commit f01194856f
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ class News < ActiveRecord::Base
validates_length_of :title, :maximum => 60
validates_length_of :summary, :maximum => 255
acts_as_journalized :event_url => Proc.new {|o| {:controller => 'news', :action => 'show', :id => o.journaled_id} }
acts_as_journalized :event_url => Proc.new {|o| {:controller => 'news', :action => 'show', :id => o.journaled_id} },
:event_description => :description
acts_as_searchable :columns => ["#{table_name}.title", "#{table_name}.summary", "#{table_name}.description"], :include => :project
acts_as_watchable