Add endpoint to retrieve latest publications.

This commit is contained in:
Florian THIERRY
2024-06-04 13:06:20 +02:00
parent 067bf7885a
commit 58295398e0
7 changed files with 53 additions and 1 deletions

View File

@@ -15,4 +15,6 @@ public interface PublicationPort {
void delete(Publication publication);
List<Publication> search(List<PublicationSearchCriterion> criteria);
List<Publication> getLatest();
}