HangfireIO / Hangfire

An easy way to perform background job processing in .NET and .NET Core applications. No Windows Service or separate process required
https://www.hangfire.io
Other
9.33k stars 1.69k forks source link

Ability to sort & search #2132

Open tamusjroyce opened 1 year ago

tamusjroyce commented 1 year ago

Looking at the code, I only see from and count. Could better sorting be allowed?

int.TryParse(Query("from"), out from);
int.TryParse(Query("count"), out perPage);

.../hangfire/recurring?from=0&count=20&order=created

Desired

/hangfire/recurring?from=0&count=20&order=created

Desired

/hangfire/recurring?from=0&count=20&order=created&created=2022-11-14_2022-11-15&id=1337ee76-94bc-4d8a-8d72-8c530dda047e&cron=0_015*_*

I am ok if we can only sort by a desired column. But it would be great to filter on a created range, id, or cron schedule

mrjamiebowman commented 4 months ago

Search would be incredibly useful. I'd love to be able to search all types of jobs.