feat: implement activity feed module with dynamic filtering, state management, and asset selection components

This commit is contained in:
2026-06-22 12:47:01 +05:30
parent 0a35bba378
commit 514a656fa8
11 changed files with 505 additions and 150 deletions

View File

@@ -77,5 +77,10 @@ export const activityFeedsService = {
getFalseAnomaly: async (params: any) => {
const response = await axiosClient.get('/api/audit/asset/get-false-Anomaly', { params });
return response;
},
bulkDelete: async (payload: any) => {
const response = await axiosClient.post('/api/audit/bulk/delete', payload);
return response;
}
};