feat(calendar): Can now create Jitsi link when making event

This commit is contained in:
Hivert Quentin
2025-01-27 14:27:09 +01:00
parent c400f45ef1
commit 42c227beca
9 changed files with 64 additions and 0 deletions
@@ -313,6 +313,12 @@
focus('attachUrl_' + i);
};
this.addJitsiUrl = function () {
var jitsiUrl = "https://meet.jit.si/SOGo_meeting/" + crypto.randomUUID();
var i = this.component.addAttachUrl(jitsiUrl);
focus('attachUrl_' + i);
};
this.toggleRecurrenceEditor = function () {
this.showRecurrenceEditor = !this.showRecurrenceEditor;
this.component.$hasCustomRepeat = this.showRecurrenceEditor;