Any open-source admin UI for quartz.NET

Viewed 34440

Is there available any open source admin interface to add/edit/delete jobs & triggers in QUARTZ.NET scheduler?

5 Answers

I recently published new alternative web UI for Quartz.NET. You can manage jobs, triggers, calendars and most of the API which IScheduler provide. It is pluggable into existing OWIN and ASP.NET Core application or it creates embedded web server on it own. You can put strongly typed values to JobDataMap or edit existing JobDataMap of job or trigger.

https://github.com/jlucansky/Quartzmin

It seems that currently CrystalQuartz is the best fitting solution here

Related