issue #1378 add Activity tab in user manager

This commit is contained in:
MatthieuLP
2021-04-09 09:34:01 +02:00
committed by plegall
parent d784822664
commit ec4d677cf7
11 changed files with 1394 additions and 8 deletions

18
ws.php
View File

@@ -128,6 +128,24 @@ function ws_addDefaultMethods( $arr )
array('admin_only'=>true)
);
$service->addMethod(
'pwg.activity.getList',
'ws_getActivityList',
null,
'Returns general informations.',
$ws_functions_root . 'pwg.php',
array('admin_only'=>true)
);
$service->addMethod(
'pwg.activity.downloadLog',
'ws_activity_downloadLog',
null,
'Returns general informations.',
$ws_functions_root . 'pwg.php',
array('admin_only'=>true)
);
$service->addMethod(
'pwg.caddie.add',
'ws_caddie_add',