Custom labels

This commit is contained in:
MM20
2022-09-11 18:42:02 +02:00
parent 29a06dfc4f
commit 7b86677fc2
18 changed files with 161 additions and 63 deletions
@@ -16,4 +16,7 @@ interface CustomAttrsDao {
@Insert
fun setCustomAttribute(entity: CustomAttributeEntity)
@Query("SELECT * FROM CustomAttributes WHERE type = :type AND key IN (:keys)")
fun getCustomAttributes(keys: List<String>, type: String) : Flow<List<CustomAttributeEntity>>
}