X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f498a9287a25fc284ef0e1fd90ea8ca91e661183..e5a5f957ef46d76ec78e2c0450b50a086dff82b6:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index c25c8718d..afa2722a1 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -1,8 +1,8 @@ class DiaryEntryController < ApplicationController layout 'site' - before_filter :authorize_web - before_filter :require_user + before_filter :authorize_web, :only => [:new] + before_filter :require_user, :only => [:new] def new if params[:diary_entry] @@ -13,4 +13,8 @@ class DiaryEntryController < ApplicationController end end end + + def list + @entries=DiaryEntry.find(:all, :order => 'created_at DESC', :limit=>20) + end end