2008-07-27 23:10:56 +04:00
|
|
|
class Meeting < ActiveRecord::Base
|
|
|
|
belongs_to :project
|
2008-07-27 23:18:35 +04:00
|
|
|
|
2010-07-15 23:10:05 +04:00
|
|
|
acts_as_journalized :event_title => Proc.new {|o| "#{o.scheduled_on} Meeting"},
|
|
|
|
:event_datetime => :scheduled_on,
|
|
|
|
:event_author => nil,
|
|
|
|
:event_url => Proc.new {|o| {:controller => 'meetings', :action => 'show', :id => o.id}}
|
|
|
|
:activity_timestamp => 'scheduled_on'
|
2008-07-27 23:10:56 +04:00
|
|
|
end
|