Prevent updating deleted accounts

This commit is contained in:
M66B 2022-04-17 12:18:15 +02:00
parent 55765d6617
commit 31a215d92b
1 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,8 @@ public interface DaoAccount {
@Query("SELECT * FROM account" +
" WHERE user = :user" +
" AND auth_type IN (:auth_type)")
" AND auth_type IN (:auth_type)" +
" AND tbd IS NULL")
List<EntityAccount> getAccounts(String user, int[] auth_type);
@Query("SELECT * FROM account WHERE `primary`")