If a have a recurring job:
manager.AddOrUpdate( "MyRecurringJob", Job.FromExpression<Foo>(f => f.Bar(null)), cronExpression, timeZone);
It shows up on the jobs (procesing/succeeded/failed) dashboard as “Foo.Bar”. Is there a way to configure it to show up as “MyRecurringJob”?
Thanks!