Added inline answer button configuration

This commit is contained in:
M66B
2023-03-16 08:22:39 +01:00
parent 2bd86fb978
commit 3a576bdef9
14 changed files with 3240 additions and 2 deletions

View File

@@ -105,6 +105,12 @@ public interface DaoContact {
@Update
int updateContact(EntityContact contact);
@Query("UPDATE contact SET folder = :folder WHERE id=:id")
int setContactFolder(long id, Long folder);
@Query("UPDATE contact SET folder = NULL")
int clearContactFolders();
@Query("DELETE FROM contact WHERE id = :id")
int deleteContact(long id);