##// END OF EJS Templates
Merged r14913 (#21419)....
Merged r14913 (#21419). git-svn-id: http://svn.redmine.org/redmine/branches/3.1-stable@14921 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13649:2277f6104613
r14539:293f09a15d53
Show More
meeting.rb
12 lines | 471 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',
Jean-Philippe Lang
Added missing :permission option in sample plugin....
r13649 :scope => includes(:project),
:permission => nil
Jean-Philippe Lang
Activity provider example in sample plugin....
r1694 end