remove trailing tabs from app/models/project.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11415 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
14fcac8160
commit
e31a8e2cb3
|
@ -146,8 +146,8 @@ class Project < ActiveRecord::Base
|
||||||
# returns latest created projects
|
# returns latest created projects
|
||||||
# non public projects will be returned only if user is a member of those
|
# non public projects will be returned only if user is a member of those
|
||||||
def self.latest(user=nil, count=5)
|
def self.latest(user=nil, count=5)
|
||||||
visible(user).limit(count).order("created_on DESC").all
|
visible(user).limit(count).order("created_on DESC").all
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns true if the project is visible to +user+ or to the current user.
|
# Returns true if the project is visible to +user+ or to the current user.
|
||||||
def visible?(user=User.current)
|
def visible?(user=User.current)
|
||||||
|
|
Loading…
Reference in New Issue