Skip to content

Commit

Permalink
RSS / Fix number of records parameter
Browse files Browse the repository at this point in the history
OGC API Record parameter for paging is `limit`. 

Follow up of geonetwork#7094
  • Loading branch information
fxprunayre committed Sep 21, 2023
1 parent 5d175f1 commit 7c2fc3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web-ui/src/main/resources/catalog/js/CatController.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@
rssFeeds: [
{
// List of rss feeds links to display when the OGC API Records service is enabled
url: "f=rss&sortby=-createDate&size=30",
url: "f=rss&sortby=-createDate&limit=30",
label: "lastCreatedRecords"
}
// , {
// url: "f=rss&sortby=-publicationDateForResource&size=30",
// url: "f=rss&sortby=-publicationDateForResource&limit=30",
// label: "lastPublishedRecords"
// }
]
Expand Down

0 comments on commit 7c2fc3b

Please sign in to comment.