Добавлена возможность делать стримы избранными

This commit is contained in:
serega6531
2019-05-06 22:26:36 +03:00
parent e5fbb58911
commit d1a69db830
5 changed files with 39 additions and 13 deletions

View File

@@ -14,4 +14,6 @@ public class Pagination {
private int pageSize;
private boolean favorites; // только для стримов, определяет, искать только избранные стримы или все
}

View File

@@ -43,4 +43,6 @@ public class Stream {
@ManyToMany(cascade = CascadeType.ALL)
private List<Pattern> foundPatterns;
private boolean favorite;
}