X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4ca38904dc11fa7329e186bd675e15e3c401ca86..d3314fee0f4a4031a893e0a93b5fa0f86b1613ed:/app/controllers/browse_controller.rb diff --git a/app/controllers/browse_controller.rb b/app/controllers/browse_controller.rb index 3ecec6348..a6c0e0ae2 100644 --- a/app/controllers/browse_controller.rb +++ b/app/controllers/browse_controller.rb @@ -2,6 +2,9 @@ class BrowseController < ApplicationController before_filter :authorize_web layout 'site' + def start + @nodes = Node.find(:all, :order => "timestamp DESC", :limit=> 20) + end def index @nodes = Node.find(:all, :order => "timestamp DESC", :limit=> 20) end