mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
document that those methods only support read and not unread marking
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user