mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-199): create Expense API service
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { BaseApiService } from '@/services/api/base';
|
||||
import {
|
||||
CreateExpensePayload,
|
||||
Expense,
|
||||
UpdateExpensePayload,
|
||||
} from '@/types/api/expense';
|
||||
|
||||
// export const ExpenseApi = new BaseApiService<
|
||||
// Expense,
|
||||
// CreateExpensePayload,
|
||||
// UpdateExpensePayload
|
||||
// >('/expense');
|
||||
|
||||
// TODO: remove this ASAP
|
||||
export const ExpenseApi = new BaseApiService<
|
||||
Expense,
|
||||
CreateExpensePayload,
|
||||
UpdateExpensePayload
|
||||
>('/master-data/uoms');
|
||||
Reference in New Issue
Block a user