SuccessChanges

Summary

  1. tsk8: Implements REST endpoint for recent stories (details)
Commit b3b7876aabec54e3fc03403aedd09f8824e1a454 by devpablogg
tsk8: Implements REST endpoint for recent stories
Added a new REST endpoint to allow clients to get the most recent
microstories. The endpoint `/api/microstories/recents` returns the six
latest stories.
Also updated the web configuration (web.xml) to make this endpoint
available, replacing annotation-based setup with XML configuration.
Removed the old `ApplicationConfig` class and moved REST resources from
the `api` package to the new `rest` package for better structure and
consistency.
The file was removedrest/src/main/java/es/uvigo/esei/microstories/api/StoryResource.java (diff)
The file was addedrest/src/main/java/es/uvigo/esei/microstories/rest/StoryResource.java (diff)
The file was modifiedrest/src/main/webapp/WEB-INF/web.xml (diff)
The file was removedrest/src/test/java/java/es/uvigo/esei/microstories/api/StoryResourceTest.java (diff)
The file was addedrest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceTest.java (diff)
The file was removedrest/src/main/java/es/uvigo/esei/microstories/api/ApplicationConfig.java (diff)