diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-08 08:24:01 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-08 08:24:01 +0000 |
commit | 0e30724d660146d133318d9b3288a8a1eba4d8c4 (patch) | |
tree | 122f24969ad517248d59458e25f37726a342b191 /lib/plugins | |
parent | 7222e4012db58c53d364e3b065e70338c094e878 (diff) | |
download | redmine-0e30724d660146d133318d9b3288a8a1eba4d8c4.tar.gz redmine-0e30724d660146d133318d9b3288a8a1eba4d8c4.zip |
Group events in the activity view (#12542).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10951 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/plugins')
-rw-r--r-- | lib/plugins/acts_as_event/lib/acts_as_event.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/plugins/acts_as_event/lib/acts_as_event.rb b/lib/plugins/acts_as_event/lib/acts_as_event.rb index b4d86a9b8..76b7fb82b 100644 --- a/lib/plugins/acts_as_event/lib/acts_as_event.rb +++ b/lib/plugins/acts_as_event/lib/acts_as_event.rb @@ -63,6 +63,11 @@ module Redmine event_datetime.to_date end + def event_group + group = event_options[:group] ? send(event_options[:group]) : self + group || self + end + def event_url(options = {}) option = event_options[:url] if option.is_a?(Proc) |