You can change the code in app / models / project.rb to say something else that says: "count = 5" change it to something like "count = 20":
# returns the last created projects # non-public projects will be returned only if the user is a member of these def self.latest (user = nil, count = 5) find (: all ,: limit => count ,: conditions => visible_by (user), : order => "created_on DESC") end
If you do not have access to the code, you just have to use the drop-down menu.
source share