added commands to create/delete/list usernotes

This commit is contained in:
Sheldan
2020-05-17 23:13:01 +02:00
parent 0260862e8e
commit 20f8e422a2
27 changed files with 463 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ public interface TemplateService {
* @return The template rendered as string.
*/
String renderTemplate(String key, Object model);
String renderSimpleTemplate(String key);
String renderTemplatable(Templatable templatable);
}