Added auto classify setting

This commit is contained in:
M66B
2021-01-02 22:38:37 +01:00
parent bf1d36ddfc
commit 34f1ae929b
8 changed files with 2387 additions and 13 deletions

View File

@@ -282,6 +282,7 @@ public interface DaoFolder {
", unified = :unified" +
", navigation = :navigation" +
", notify = :notify" +
", auto_classify = :auto_classify" +
", hide = :hide" +
", synchronize = :synchronize" +
", poll = :poll" +
@@ -293,7 +294,7 @@ public interface DaoFolder {
" WHERE id = :id")
int setFolderProperties(
long id, String rename,
String display, Integer color, boolean unified, boolean navigation, boolean notify, boolean hide,
String display, Integer color, boolean unified, boolean navigation, boolean notify, boolean auto_classify, boolean hide,
boolean synchronize, boolean poll, int poll_factor, boolean download,
int sync_days, int keep_days, boolean auto_delete);