mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
Include external participants for video call events
This commit is contained in:
parent
8b9f520f86
commit
9b427f57fc
@ -3688,7 +3688,7 @@ var CalendarApp = /** @class */ (function (_super) {
|
||||
// Send just the timestamp (as a string) with no timezone
|
||||
(typeof _data.start != "string" ? _data.start.toJSON() : _data.start).slice(0, -1),
|
||||
(typeof _data.end != "string" ? _data.end.toJSON() : _data.end).slice(0, -1), {
|
||||
participants: Object.keys(_data.participants).filter(function (v) { return v.match(/^[0-9]/); })
|
||||
participants: Object.keys(_data.participants).filter(function (v) { return v.match(/^[0-9]|[e]/); })
|
||||
}], function (_value) {
|
||||
if (_value) {
|
||||
if (_value.err)
|
||||
|
@ -4577,7 +4577,7 @@ class CalendarApp extends EgwApp
|
||||
( typeof _data.start != "string" ? _data.start.toJSON() : _data.start).slice(0,-1),
|
||||
( typeof _data.end != "string" ? _data.end.toJSON() : _data.end).slice(0,-1),
|
||||
{
|
||||
participants:Object.keys(_data.participants).filter(v => {return v.match(/^[0-9]/)})
|
||||
participants:Object.keys(_data.participants).filter(v => {return v.match(/^[0-9]|[e]/)})
|
||||
}], function(_value){
|
||||
if (_value)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user