This commit is contained in:
Flaminel
2025-05-19 12:38:30 +03:00
parent 3d9b286206
commit 9409346732
3 changed files with 4 additions and 1 deletions

View File

@@ -60,7 +60,7 @@ public class JobsController : ControllerBase
try
{
// Get the schedule from the request body if provided
JobSchedule jobSchedule = scheduleRequest?.Schedule;
JobSchedule jobSchedule = scheduleRequest.Schedule;
var result = await _jobManagementService.StartJob(jobType, jobSchedule);