mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Send title along other user context info for calendar scheduled calls
This commit is contained in:
parent
cde6c10e05
commit
4472c050d6
@ -3566,7 +3566,8 @@ var CalendarApp = /** @class */ (function (_super) {
|
||||
name: egw.user('account_fullname'),
|
||||
account_id: egw.user('account_id'),
|
||||
email: egw.user('account_email'),
|
||||
cal_id: _data.id
|
||||
cal_id: _data.id,
|
||||
title: _data.title
|
||||
}, _data.start, _data.end], function (_value) {
|
||||
if (_value) {
|
||||
if (_value.err)
|
||||
|
@ -4427,7 +4427,8 @@ class CalendarApp extends EgwApp
|
||||
name:egw.user('account_fullname'),
|
||||
account_id:egw.user('account_id'),
|
||||
email:egw.user('account_email'),
|
||||
cal_id:_data.id
|
||||
cal_id:_data.id,
|
||||
title: _data.title
|
||||
}, _data.start, _data.end], function(_value){
|
||||
if (_value)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user