added ability to exclude subscriptions from markAll

This commit is contained in:
Athou
2013-08-13 09:40:13 +02:00
parent b331626e8f
commit e1fc33626e
2 changed files with 22 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
package com.commafeed.frontend.model.request;
import java.io.Serializable;
import java.util.List;
import lombok.Data;
@@ -23,4 +24,7 @@ public class MarkRequest implements Serializable {
required = false)
private Long olderThan;
@ApiProperty(value = "if marking a category or 'all', exclude those subscriptions from the marking", required = false)
private List<Long> excludedSubscriptions;
}