implemented saving of new events. next: updating

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-12-28 20:40:10 +01:00
parent fc17bb9168
commit 2e1f1c9697
7 changed files with 112 additions and 28 deletions
@@ -103,7 +103,11 @@ public class BaseAppointment implements Appointment {
@Override
public Appointment clone(long newId) {
return new BaseAppointment(newId, title, description, start, end, location, slug).coords(coords).addLinks(links).add(attachments);
return new BaseAppointment(newId, title, description, start, end, location, slug) //
.coords(coords)
.addLinks(links)
.add(attachments)
.tags(tags);
}
@Override