Added primary inbox start screen

This commit is contained in:
M66B
2024-04-13 09:53:00 +02:00
parent 704a994c7d
commit 6c52d14966
4 changed files with 35 additions and 3 deletions

View File

@@ -245,8 +245,8 @@ public interface DaoFolder {
" JOIN account ON account.id = folder.account" +
" WHERE account.synchronize" +
" AND account.`primary`" +
" AND type = '" + EntityFolder.DRAFTS + "'")
EntityFolder getPrimaryDrafts();
" AND type = :type")
EntityFolder getFolderPrimary(String type);
@Query("SELECT * FROM folder WHERE type = '" + EntityFolder.OUTBOX + "'")
EntityFolder getOutbox();