Code cleanup: removed the obsolete with_limit scope.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10243 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d33fa1f8c8
commit
3a77d543fd
|
@ -70,7 +70,6 @@ class Issue < ActiveRecord::Base
|
|||
}
|
||||
|
||||
scope :recently_updated, :order => "#{Issue.table_name}.updated_on DESC"
|
||||
scope :with_limit, lambda { |limit| { :limit => limit} }
|
||||
scope :on_active_project, :include => [:status, :project, :tracker],
|
||||
:conditions => ["#{Project.table_name}.status=#{Project::STATUS_ACTIVE}"]
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<h3><%=l(:label_watched_issues)%> (<%= Issue.visible.watched_by(user.id).count %>)</h3>
|
||||
<% watched_issues = Issue.visible.on_active_project.watched_by(user.id).recently_updated.with_limit(10) %>
|
||||
<% watched_issues = Issue.visible.on_active_project.watched_by(user.id).recently_updated.limit(10) %>
|
||||
|
||||
<%= render :partial => 'issues/list_simple', :locals => { :issues => watched_issues } %>
|
||||
<% if watched_issues.length > 0 %>
|
||||
|
|
Loading…
Reference in New Issue