diff --git a/routes/tests.php b/routes/tests.php index dfc3403..b5ab53e 100644 --- a/routes/tests.php +++ b/routes/tests.php @@ -41,13 +41,7 @@ Route::get('/seed', function (Request $request) { - $rss_url = $request->input('rss_url'); - - if (is_empty($rss_url)) { - return abort(404); - } - - BrowseSingleRSSJob::dispatch($rss_url, 1)->onQueue('default')->onConnection('default'); + BrowseRSSPostJob::dispatch(1)->onQueue('default')->onConnection('default'); });