mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
19 lines
424 B
TypeScript
19 lines
424 B
TypeScript
import { BaseApiService } from '@/services/api/base';
|
|
import {
|
|
Phase,
|
|
CreatePhasePayload,
|
|
UpdatePhasePayload,
|
|
} from '@/types/api/daily-checklist/phase';
|
|
|
|
export class PhaseApiService extends BaseApiService<
|
|
Phase,
|
|
CreatePhasePayload,
|
|
UpdatePhasePayload
|
|
> {
|
|
constructor(basePath: string = '/master-data/phases') {
|
|
super(basePath);
|
|
}
|
|
}
|
|
|
|
export const PhaseApi = new PhaseApiService('/master-data/phases');
|