implemented editing of notes

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-07-30 18:48:29 +02:00
parent fccec9865a
commit e08bcf17a5
5 changed files with 70 additions and 16 deletions

View File

@@ -32,8 +32,7 @@ public record Note(long id, String module, long entityId, long authorId, String
MODULE,module,
ENTITY_ID,entityId,
USER_ID,authorId,
TEXT,text,
RENDERED,markdown(text),
TEXT,Map.of(RENDERED,markdown(text),SOURCE,text),
TIMESTAMP,timestamp.withNano(0)
);
}