document that those methods only support read and not unread marking

This commit is contained in:
Athou
2013-04-18 09:19:22 +02:00
parent f6333145c0
commit 123c208391

View File

@@ -160,7 +160,7 @@ public class EntriesREST extends AbstractResourceREST {
@Path("/feed/mark")
@GET
@ApiOperation(value = "Mark feed entries", notes = "Mark feed entries as read/unread")
@ApiOperation(value = "Mark feed entries", notes = "Mark feed entries as read")
public Response markFeedEntries(
@ApiParam(value = "feed id", required = true) @QueryParam("id") String id,
@ApiParam(value = "only entries older than this, prevent marking an entry that was not retrieved") @QueryParam("olderThan") Long olderThanTimestamp) {
@@ -179,7 +179,7 @@ public class EntriesREST extends AbstractResourceREST {
@Path("/category/mark")
@GET
@ApiOperation(value = "Mark category entries", notes = "Mark feed entries as read/unread")
@ApiOperation(value = "Mark category entries", notes = "Mark feed entries as read")
public Response markCategoryEntries(
@ApiParam(value = "category id, or 'all'", required = true) @QueryParam("id") String id,
@ApiParam(value = "only entries older than this, prevent marking an entry that was not retrieved") @QueryParam("olderThan") Long olderThanTimestamp) {