Actions
Feature #20458
openFetch Many Authors Activities
Status:
New
Priority:
Normal
Assignee:
-
Category:
Activity view
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Description
Hi, I'm developing a follow feature for a customer and i realize that is not possible to fetch activities from many authors.
So i sugest this change:
        @scope.each do |event_type|
          constantized_providers(event_type).each do |provider|
            e += provider.find_events(event_type, @user, from, to, @options)
          end
        end
to
if @options[:author].is_a? Array
  @options[:author].each do |a|
        @scope.each do |event_type|
          constantized_providers(event_type).each do |provider|
            e += provider.find_events(event_type, @user, from, to, @options.merge(author: a))
          end
        end
  end
end
Sry for don't submit a patch, I'm not on my pc now and I don't have svn instaled.
Files
       Updated by Victor Campos about 10 years ago
      Updated by Victor Campos about 10 years ago
      
    
    - File fetch_many_authors.patch fetch_many_authors.patch added
Hi,
Here the patch, i think nothing that work before was broken and add new possibilities.
       Updated by Victor Campos about 10 years ago
      Updated by Victor Campos about 10 years ago
      
    
    - File fetch_many_authors.patch fetch_many_authors.patch added
fixing patch
       Updated by Takenori TAKAKI about 3 years ago
      Updated by Takenori TAKAKI about 3 years ago
      
    
    - File 20458.patch 20458.patch added
I made a patch to allow multiple users to be specified on the /activity.
This patch works with the latest Redmine (trunk@21812).
Actions