Better message actions determine

This commit is contained in:
M66B
2018-08-05 15:42:02 +00:00
parent f267d55d98
commit 66726e4454
3 changed files with 39 additions and 79 deletions

View File

@@ -48,6 +48,9 @@ public interface DaoFolder {
" GROUP BY folder.id")
LiveData<List<TupleFolderEx>> liveFolders();
@Query("SELECT * FROM folder WHERE account = :account")
LiveData<List<EntityFolder>> liveFolders(long account);
@Query("SELECT folder.* FROM folder WHERE folder.id = :id")
LiveData<EntityFolder> liveFolder(long id);