model: convert news finder to Rails3 syntax
Contributed by Felix Schäfer. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9624 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
bef28f7dab
commit
569e1b37cc
|
@ -52,10 +52,9 @@ class News < ActiveRecord::Base
|
|||
|
||||
# returns latest news for projects visible by user
|
||||
def self.latest(user = User.current, count = 5)
|
||||
find(:all, :limit => count,
|
||||
:conditions => Project.allowed_to_condition(user, :view_news),
|
||||
:include => [ :author, :project ],
|
||||
:order => "#{News.table_name}.created_on DESC")
|
||||
includes([:author, :project]).where(
|
||||
Project.allowed_to_condition(user, :view_news)
|
||||
).order("#{News.table_name}.created_on DESC").limit(count).all
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Reference in New Issue