mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
INA-5 | replace archived with is_deleted property
This commit is contained in:
parent
9bd2279290
commit
3d67c99567
@ -121,7 +121,7 @@ class TaskScheduler implements ShouldQueue
|
|||||||
private function fetchJobs()
|
private function fetchJobs()
|
||||||
{
|
{
|
||||||
return Scheduler::where('paused', false)
|
return Scheduler::where('paused', false)
|
||||||
->where('archived', false)
|
->where('is_deleted', false)
|
||||||
->whereDate('scheduled_run', '<=', Carbon::now())
|
->whereDate('scheduled_run', '<=', Carbon::now())
|
||||||
->cursor();
|
->cursor();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user