##// END OF EJS Templates
Merged r13961 (#18922)....
Merged r13961 (#18922). git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14022 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9160:db110ba35e73
r13640:25e68f13f8c2
Show More
meeting.rb
11 lines | 436 B | text/x-ruby | RubyLexer
Jean-Philippe Lang
Activity provider example in sample plugin....
r1694 class Meeting < ActiveRecord::Base
belongs_to :project
Jean-Philippe Lang
Follows r1703....
r1695
acts_as_event :title => Proc.new {|o| "#{o.scheduled_on} Meeting"},
:datetime => :scheduled_on,
:author => nil,
Toshi MARUYAMA
remove trailing white-spaces from extra/sample_plugin/app/models/meeting.rb...
r9160 :url => Proc.new {|o| {:controller => 'meetings', :action => 'show', :id => o.id}}
Jean-Philippe Lang
Activity provider example in sample plugin....
r1694 acts_as_activity_provider :timestamp => 'scheduled_on',
:find_options => { :include => :project }
end