Show account/identity dimmed when disabled

This commit is contained in:
M66B
2022-01-10 19:41:10 +01:00
parent 4a5d6be29b
commit c6fe5fcaf9
4 changed files with 10 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ public interface DaoIdentity {
LiveData<List<TupleIdentityView>> liveIdentityView();
@Query("SELECT identity.*" +
", account.name AS accountName, account.category AS accountCategory" +
", account.name AS accountName, account.category AS accountCategory, account.synchronize AS accountSynchronize" +
", folder.id AS drafts" +
" FROM identity" +
" JOIN account ON account.id = identity.account" +
@@ -41,7 +41,7 @@ public interface DaoIdentity {
LiveData<List<TupleIdentityEx>> liveIdentities();
@Query("SELECT identity.*" +
", account.name AS accountName, account.category AS accountCategory" +
", account.name AS accountName, account.category AS accountCategory, account.synchronize AS accountSynchronize" +
", folder.id AS drafts" +
" FROM identity" +
" JOIN account ON account.id = identity.account" +
@@ -51,7 +51,7 @@ public interface DaoIdentity {
LiveData<List<TupleIdentityEx>> liveComposableIdentities();
@Query("SELECT identity.*" +
", account.name AS accountName, account.category AS accountCategory" +
", account.name AS accountName, account.category AS accountCategory, account.synchronize AS accountSynchronize" +
", folder.id AS drafts" +
" FROM identity" +
" JOIN account ON account.id = identity.account" +