]> source.dussan.org Git - redmine.git/commitdiff
Removed unused scopes.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 5 Dec 2014 12:34:59 +0000 (12:34 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 5 Dec 2014 12:34:59 +0000 (12:34 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@13715 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/time_entry.rb

index 240df755658e9e931d31477cba7be5c288a69faa..c875afbb1df9186fda1a953b65ab6125df15792c 100644 (file)
@@ -52,21 +52,6 @@ class TimeEntry < ActiveRecord::Base
     joins(:issue).
     where("#{Issue.table_name}.root_id = #{issue.root_id} AND #{Issue.table_name}.lft >= #{issue.lft} AND #{Issue.table_name}.rgt <= #{issue.rgt}")
   }
-  scope :on_project, lambda {|project, include_subprojects|
-    joins(:project).
-    where(project.project_condition(include_subprojects))
-  }
-  scope :spent_between, lambda {|from, to|
-    if from && to
-     where("#{TimeEntry.table_name}.spent_on BETWEEN ? AND ?", from, to)
-    elsif from
-     where("#{TimeEntry.table_name}.spent_on >= ?", from)
-    elsif to
-     where("#{TimeEntry.table_name}.spent_on <= ?", to)
-    else
-     where(nil)
-    end
-  }
 
   safe_attributes 'hours', 'comments', 'project_id', 'issue_id', 'activity_id', 'spent_on', 'custom_field_values', 'custom_fields'