Seperate notification channel for separate accounts

This commit is contained in:
M66B
2018-12-10 12:26:50 +01:00
parent f552a9b23d
commit bd58041ab1
4 changed files with 59 additions and 4 deletions

View File

@@ -35,6 +35,9 @@ public interface DaoAccount {
@Query("SELECT * FROM account WHERE synchronize = :synchronize")
List<EntityAccount> getAccounts(boolean synchronize);
@Query("SELECT * FROM account WHERE tbd = 1")
List<EntityAccount> getAccountsTbd();
@Query("SELECT * FROM account")
LiveData<List<EntityAccount>> liveAccounts();