From 0c8b9eabf332d3aafa7ae7dc2c29c06a4b66bea1 Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Tue, 25 Oct 2022 13:35:18 +0300 Subject: [PATCH] Pass min/max lat/lon to notes rss feed builder --- app/controllers/api/notes_controller.rb | 4 ++++ test/controllers/api/notes_controller_test.rb | 1 + 2 files changed, 5 insertions(+) diff --git a/app/controllers/api/notes_controller.rb b/app/controllers/api/notes_controller.rb index c152c6272..7f508ab34 100644 --- a/app/controllers/api/notes_controller.rb +++ b/app/controllers/api/notes_controller.rb @@ -190,6 +190,10 @@ module Api bbox.check_size(Settings.max_note_request_area) notes = notes.bbox(bbox) + @min_lon = bbox.min_lon + @min_lat = bbox.min_lat + @max_lon = bbox.max_lon + @max_lat = bbox.max_lat end # Find the comments we want to return diff --git a/test/controllers/api/notes_controller_test.rb b/test/controllers/api/notes_controller_test.rb index f7e7c77f4..f46647f02 100644 --- a/test/controllers/api/notes_controller_test.rb +++ b/test/controllers/api/notes_controller_test.rb @@ -1032,6 +1032,7 @@ module Api assert_equal "application/rss+xml", @response.media_type assert_select "rss", :count => 1 do assert_select "channel", :count => 1 do + assert_select "description", :text => /1\.2/, :count => 1 assert_select "item", :count => 2 end end -- 2.39.5