This commit is contained in:
M66B 2019-05-21 15:05:33 +02:00
parent 7db3a561ed
commit a849065d7f
1 changed files with 0 additions and 6 deletions

View File

@ -33,12 +33,6 @@ public interface DaoFolder {
" ORDER BY CASE WHEN folder.type = '" + EntityFolder.USER + "' THEN 1 ELSE 0 END")
List<EntityFolder> getFolders(long account);
@Query("SELECT folder.* FROM folder" +
" JOIN account ON account.id = folder.account" +
" WHERE folder.synchronize" +
" AND account.synchronize")
List<EntityFolder> getSynchronizingFolders();
@Query("SELECT folder.* FROM folder" +
" JOIN account ON account.id = folder.account" +
" WHERE account.synchronize" +