mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Add participants as extra params for videoconference call
This commit is contained in:
parent
a777610c2d
commit
f7e10fdc35
@ -3568,7 +3568,9 @@ var CalendarApp = /** @class */ (function (_super) {
|
||||
email: egw.user('account_email'),
|
||||
cal_id: _data.id,
|
||||
title: _data.title
|
||||
}, _data.start, _data.end], function (_value) {
|
||||
}, _data.start, _data.end, {
|
||||
participants: Object.keys(_data.participants).filter(function (v) { return v.match(/^[0-9]/); })
|
||||
}], function (_value) {
|
||||
if (_value) {
|
||||
if (_value.err)
|
||||
egw.message(_value.err, 'error');
|
||||
|
@ -4429,7 +4429,9 @@ class CalendarApp extends EgwApp
|
||||
email:egw.user('account_email'),
|
||||
cal_id:_data.id,
|
||||
title: _data.title
|
||||
}, _data.start, _data.end], function(_value){
|
||||
}, _data.start, _data.end, {
|
||||
participants:Object.keys(_data.participants).filter(v => {return v.match(/^[0-9]/)})
|
||||
}], function(_value){
|
||||
if (_value)
|
||||
{
|
||||
if (_value.err) egw.message(_value.err, 'error');
|
||||
|
Loading…
Reference in New Issue
Block a user