mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-212): implement PurchaseApi service for purchase requests
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { BaseApiService } from './base';
|
||||
import {
|
||||
CreatePurchasePayload,
|
||||
Purchase,
|
||||
UpdatePurchasePayload,
|
||||
} from '@/types/api/purchasing/purchasing';
|
||||
|
||||
export const PurchaseApi = new BaseApiService<
|
||||
Purchase,
|
||||
CreatePurchasePayload,
|
||||
UpdatePurchasePayload
|
||||
>('/purchase-requests');
|
||||
Reference in New Issue
Block a user