feat(FE-170,174,175): add approval history modal and integrate approval API in RecordingTable

This commit is contained in:
rstubryan
2025-11-05 13:41:55 +07:00
parent fac9d5fa42
commit b1457a5feb
2 changed files with 259 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
import { BaseApiService } from '@/services/api/base';
import { BaseApproval } from '@/types/api/api-general';
export const ApprovalApi = new BaseApiService<BaseApproval, unknown, unknown>(
'/approvals'
);