mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-23 23:05:46 +00:00
fix(FE-174): correct parameter name for next day recording API request
This commit is contained in:
@@ -100,12 +100,15 @@ export class RecordingService extends BaseApiService<
|
|||||||
async nextDayRecording(
|
async nextDayRecording(
|
||||||
projectFlockId: number
|
projectFlockId: number
|
||||||
): Promise<BaseApiResponse<NextDayRecording> | undefined> {
|
): Promise<BaseApiResponse<NextDayRecording> | undefined> {
|
||||||
return await this.customRequest<BaseApiResponse<NextDayRecording>>(`next-day`, {
|
return await this.customRequest<BaseApiResponse<NextDayRecording>>(
|
||||||
method: 'GET',
|
`next-day`,
|
||||||
params: {
|
{
|
||||||
project_flock_id: projectFlockId,
|
method: 'GET',
|
||||||
},
|
params: {
|
||||||
});
|
project_flock_kandang_id: projectFlockId,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user