Added external send template

This commit is contained in:
M66B
2023-04-23 11:50:16 +02:00
parent 40320ed887
commit d52411afdb
8 changed files with 93 additions and 1 deletions

View File

@@ -89,6 +89,9 @@ public interface DaoIdentity {
@Query("SELECT * FROM identity WHERE uuid = :uuid")
EntityIdentity getIdentityByUUID(String uuid);
@Query("SELECT * FROM identity WHERE display = :display")
List<EntityIdentity> getIdentityByDisplayName(String display);
@Insert
long insertIdentity(EntityIdentity identity);