mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-18 11:58:24 +01:00
Calendar: When creating a videoconference, send start/end as string with no timezone (usertime)
This commit is contained in:
parent
d5434d567b
commit
0ca3d63f18
@ -3568,7 +3568,12 @@ var CalendarApp = /** @class */ (function (_super) {
|
|||||||
email: egw.user('account_email'),
|
email: egw.user('account_email'),
|
||||||
cal_id: _data.id,
|
cal_id: _data.id,
|
||||||
title: _data.title
|
title: _data.title
|
||||||
}, _data.start, _data.end, {
|
},
|
||||||
|
// Dates are user time, but we told javascript it was UTC.
|
||||||
|
// Send just the timestamp (as a string) with no timezone
|
||||||
|
_data.start.toJSON().slice(0, -1),
|
||||||
|
_data.end.toJSON().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]/); })
|
||||||
}], function (_value) {
|
}], function (_value) {
|
||||||
if (_value) {
|
if (_value) {
|
||||||
|
@ -4429,7 +4429,12 @@ class CalendarApp extends EgwApp
|
|||||||
email:egw.user('account_email'),
|
email:egw.user('account_email'),
|
||||||
cal_id:_data.id,
|
cal_id:_data.id,
|
||||||
title: _data.title
|
title: _data.title
|
||||||
}, _data.start, _data.end, {
|
},
|
||||||
|
// Dates are user time, but we told javascript it was UTC.
|
||||||
|
// Send just the timestamp (as a string) with no timezone
|
||||||
|
_data.start.toJSON().slice(0,-1),
|
||||||
|
_data.end.toJSON().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]/)})
|
||||||
}], function(_value){
|
}], function(_value){
|
||||||
if (_value)
|
if (_value)
|
||||||
|
Loading…
Reference in New Issue
Block a user