X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b7bdc88008672fd065529f1b016256a55964fe1b..64b3e289ac14533c6fb2b1223b6417ad0446878c:/app/controllers/api/notes_controller.rb diff --git a/app/controllers/api/notes_controller.rb b/app/controllers/api/notes_controller.rb index 703f275aa..a73240e5f 100644 --- a/app/controllers/api/notes_controller.rb +++ b/app/controllers/api/notes_controller.rb @@ -294,10 +294,14 @@ module Api raise OSM::APIBadUserInput, "Date #{params[:to]} is in a wrong format" end - @notes = params[:sort] == "created_at" ? @notes.where(:created_at => from..to) : @notes.where(:updated_at => from..to) + @notes = if params[:sort] == "updated_at" + @notes.where(:updated_at => from..to) + else + @notes.where(:created_at => from..to) + end end - # Find the notes we want to return + # Choose the sort order @notes = if params[:sort] == "created_at" if params[:order] == "oldest" @notes.order("created_at ASC") @@ -312,6 +316,7 @@ module Api end end + # Find the notes we want to return @notes = @notes.distinct.limit(result_limit).preload(:comments) # Render the result