We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 337e0e0 commit 02e4650Copy full SHA for 02e4650
IntegrationEngine/Api/Controllers/JobController.cs
@@ -24,10 +24,11 @@ public JobController(IEngineScheduler engineScheduler)
24
EngineScheduler = engineScheduler;
25
}
26
27
- public IHttpActionResult GetJobs()
+ public IHttpActionResult GetJobKeys()
28
{
29
- return Ok(EngineScheduler.Scheduler.GetJobKeys(GroupMatcher<JobKey>.AnyGroup()).ToList());
+ return Ok(EngineScheduler.Scheduler
30
+ .GetJobKeys(GroupMatcher<JobKey>.AnyGroup())
31
+ .Select(x => x.ToString()).ToList());
32
-
33
34
0 commit comments