Skip to content

Commit

Permalink
add filter update command to schedule seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
recursivetree committed Sep 6, 2024
1 parent 95f5de3 commit f32c5c0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/database/seeders/ScheduleSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ public function getSchedules(): array
'ping_before' => null,
'ping_after' => null,
],
[
'command' => 'seat:filters:update',
'expression' => sprintf('%d * * * *', rand(0, 59)),
'allow_overlap' => false,
'allow_maintenance' => false,
'ping_before' => null,
'ping_after' => null,
]
];
}

Expand Down

0 comments on commit f32c5c0

Please sign in to comment.