forked from extern/egroupware
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'),
|
name: egw.user('account_fullname'),
|
||||||
account_id: egw.user('account_id'),
|
account_id: egw.user('account_id'),
|
||||||
email: egw.user('account_email'),
|
email: egw.user('account_email'),
|
||||||
cal_id: _data.id
|
cal_id: _data.id,
|
||||||
|
title: _data.title
|
||||||
}, _data.start, _data.end], function (_value) {
|
}, _data.start, _data.end], function (_value) {
|
||||||
if (_value) {
|
if (_value) {
|
||||||
if (_value.err)
|
if (_value.err)
|
||||||
|
@ -4427,7 +4427,8 @@ class CalendarApp extends EgwApp
|
|||||||
name:egw.user('account_fullname'),
|
name:egw.user('account_fullname'),
|
||||||
account_id:egw.user('account_id'),
|
account_id:egw.user('account_id'),
|
||||||
email:egw.user('account_email'),
|
email:egw.user('account_email'),
|
||||||
cal_id:_data.id
|
cal_id:_data.id,
|
||||||
|
title: _data.title
|
||||||
}, _data.start, _data.end], function(_value){
|
}, _data.start, _data.end], function(_value){
|
||||||
if (_value)
|
if (_value)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user