X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f498a9287a25fc284ef0e1fd90ea8ca91e661183..a0e8c35c1b3bfba11a755d9f8e282fc0773d953f:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index c25c8718d..f8e2a5761 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -2,15 +2,19 @@ class DiaryEntryController < ApplicationController layout 'site' before_filter :authorize_web - before_filter :require_user + before_filter :require_user, :only => [:new] def new if params[:diary_entry] - @entry = DiaryEntry.new(@params[:diary_entry]) + @entry = DiaryEntry.new(params[:diary_entry]) @entry.user = @user if @entry.save redirect_to :controller => 'user', :action => 'diary', :display_name => @user.display_name end end end + + def list + @entries=DiaryEntry.find(:all, :order => 'created_at DESC', :limit=>20) + end end