##// END OF EJS Templates
add unit test of error message in case that member role is empty...
add unit test of error message in case that member role is empty git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8126 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1695:b20281f15156
r8006:740b54f55b65
Show More
meeting.rb
11 lines | 454 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,
: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