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

@@ -58,6 +58,9 @@ public interface DaoAnswer {
@Query("SELECT * FROM answer WHERE uuid = :uuid")
EntityAnswer getAnswerByUUID(String uuid);
@Query("SELECT * FROM answer WHERE name = :name")
List<EntityAnswer> getAnswerByName(String name);
@Query("SELECT * FROM answer" +
" WHERE standard AND NOT hide")
EntityAnswer getStandardAnswer();