X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/34189cf761a871f366775843da580121b39b4e25..80c6c685bcf097754e872ba61444fc4bb93f2515:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index b425ef4b6..52e2ab22b 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -3,7 +3,8 @@ class DiaryEntryController < ApplicationController before_filter :authorize_web before_filter :require_user, :only => [:new, :edit] - before_filter :check_database_availability + before_filter :check_database_readable + before_filter :check_database_writable, :only => [:new, :edit] def new @title = 'New diary entry' @@ -69,7 +70,8 @@ class DiaryEntryController < ApplicationController end else @title = "Users' diaries" - @entry_pages, @entries = paginate(:diary_entries, + @entry_pages, @entries = paginate(:diary_entries, :include => :user, + :conditions => "users.visible = 1", :order => 'created_at DESC', :per_page => 20) end @@ -90,7 +92,9 @@ class DiaryEntryController < ApplicationController render :nothing => true, :status => :not_found end else - @entries = DiaryEntry.find(:all, :order => 'created_at DESC', :limit => 20) + @entries = DiaryEntry.find(:all, :include => :user, + :conditions => "users.visible = 1", + :order => 'created_at DESC', :limit => 20) @title = "OpenStreetMap diary entries" @description = "Recent diary entries from users of OpenStreetMap" @link = "http://www.openstreetmap.org/diary"