summaryrefslogtreecommitdiff
path: root/routes/web.php
diff options
context:
space:
mode:
authorhorus2022-01-03 14:55:54 +0100
committerhorus2022-01-03 14:55:54 +0100
commit0f94ba96bd39e48f5f7720ee62b028e2584ff96d (patch)
treef87f189f9cca1701eb6cc62afae0159ecab7034f /routes/web.php
parent536b38a27f5ca16e40eb3de4d1fd8e6f1d25e924 (diff)
downloadsenpai-0f94ba96bd39e48f5f7720ee62b028e2584ff96d.tar.gz
Add queue monitor
Diffstat (limited to 'routes/web.php')
-rw-r--r--routes/web.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php
index bd37c46..34f966e 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -29,6 +29,11 @@ Route::get('/changeSeason', 'AnimeController@changeSeason')->name('change_season
Route::get('/ical/{username}', 'IndexController@ical');
Route::get('/create/user/{param}', 'IndexController@createUser');
+Route::get('/_create/user/{param}', 'IndexController@_createUser');
+Route::prefix('jobs')->group(function () {
+ Route::queueMonitor();
+});
+#Route::get('/status/{param}', 'IndexController@showJobStatus');
Route::get('/save', 'IndexController@saveWatchingAnime');
Route::get('/test/getcal/{username}', 'TestController@getCalendar');
Route::get('/test/setcal/{username}', 'TestController@setCalendar');