Extend local contact info

This commit is contained in:
M66B
2019-03-14 17:46:45 +00:00
parent 013cb9e965
commit 0a80d21534
7 changed files with 1639 additions and 39 deletions

View File

@@ -37,7 +37,7 @@ public interface DaoContact {
" FROM contact" +
" WHERE email = :email" +
" AND (:type IS NULL OR type = :type)")
List<EntityContact> getContacts(Integer type, String email);
EntityContact getContact(Integer type, String email);
@Query("SELECT id AS _id, name, email" +
", CASE type" +