2024-01-23 11:52:38 +00:00
|
|
|
class Meeting < ApplicationRecord
|
2008-07-27 19:10:56 +00:00
|
|
|
belongs_to :project
|
2008-07-27 19:18:35 +00:00
|
|
|
|
|
|
|
|
acts_as_event :title => Proc.new {|o| "#{o.scheduled_on} Meeting"},
|
|
|
|
|
:datetime => :scheduled_on,
|
|
|
|
|
:author => nil,
|
2012-04-01 12:41:25 +00:00
|
|
|
:url => Proc.new {|o| {:controller => 'meetings', :action => 'show', :id => o.id}}
|
|
|
|
|
|
2008-07-27 19:10:56 +00:00
|
|
|
acts_as_activity_provider :timestamp => 'scheduled_on',
|
2023-01-27 04:04:20 +00:00
|
|
|
:scope => proc { joins(:project) },
|
2015-02-18 21:11:37 +00:00
|
|
|
:permission => nil
|
2008-07-27 19:10:56 +00:00
|
|
|
end
|