Actions
Defect #15983
closedProject.activities returns different types depending on context
Status:
Closed
Priority:
Normal
Assignee:
Category:
Code cleanup/refactoring
Target version:
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
  Project.active_activities, Project.all_activities and, ultimately, Project.activities return:
	
- a database relation if the activities on the project are untouched (through TimeEntryActivity.shared.active)
 - an Array if some activities are overridden (through Project.system_activities_and_project_overrides).
 
This makes any calling code unable to make further operations on the results, and leads to errors that are hard to understand.
      
      Updated by Jean-Philippe Lang over 11 years ago
      
    
    - Category changed from Time tracking to Code cleanup/refactoring
 - Status changed from New to Closed
 - Assignee set to Jean-Philippe Lang
 - Target version set to 2.5.0
 - Resolution set to Fixed
 
Fixed in r12854, it now always returns a ActiveRecord::Relation.
Actions