Use correct refresh methods for delete so app can handle it

This commit is contained in:
nathangray
2020-01-23 09:21:41 -07:00
parent 2bae92f066
commit ff50df67d0
4 changed files with 29 additions and 4 deletions

View File

@@ -48,6 +48,22 @@ class TimesheetApp extends EgwApp
}
}
observer(_msg, _app, _id, _type, _msg_type, _links) {
switch(_app)
{
case 'timesheet':
switch(_type)
{
case 'delete':
egw.dataStoreUID(_app + '::' + _id, null);
break;
}
break;
}
}
/**
*
*/