Mercurial > hg > soundsoftware-site
view extra/sample_plugin/app/models/meeting.rb @ 1498:abde837f1224 live
Merge
author | Chris Cannam |
---|---|
date | Fri, 21 Mar 2014 08:59:41 +0000 |
parents | 433d4f72a19b |
children |
line wrap: on
line source
class Meeting < ActiveRecord::Base belongs_to :project acts_as_event :title => Proc.new {|o| "#{o.scheduled_on} Meeting"}, :datetime => :scheduled_on, :author => nil, :url => Proc.new {|o| {:controller => 'meetings', :action => 'show', :id => o.id}} acts_as_activity_provider :timestamp => 'scheduled_on', :find_options => { :include => :project } end