account recent

This commit is contained in:
CHIEFSOFT\ameye
2023-09-02 19:07:33 -04:00
parent 059f16dde3
commit 3eb3f5214b
2 changed files with 5 additions and 2 deletions
+2 -1
View File
@@ -208,7 +208,8 @@ abstract class BaseController extends Controller
'getaccsettings' => ['POST'], 'getaccsettings' => ['POST'],
'dashrecent' => ['POST'], 'dashrecent' => ['POST'],
'myfiles' => ['POST'], 'myfiles' => ['POST'],
'reqdel'=> ['POST'], 'reqdel' => ['POST'],
'recentactivities' => ['POST'],
]; ];
return $endpoints; return $endpoints;
} }
+3 -1
View File
@@ -386,7 +386,9 @@ class WrenchApi extends BaseController
case 'reqdel': case 'reqdel':
// some actions // some actions
break; break;
case 'recentactivities':
$in["action"] = WRENCHBOARD_ACCOUNT_RECENTS;
break;
} }
$in["pid"] = 100; $in["pid"] = 100;
return $in; return $in;