From f9cb2b920c3cfed67949abb85043f0caecb6dd00 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 1 Jun 2019 15:28:37 -0600 Subject: [PATCH] Update web routes --- routes/web.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/web.php b/routes/web.php index 10ea2fc1..f421837d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -96,6 +96,8 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact Route::post('moderator/action', 'InternalApiController@modAction'); Route::get('discover/categories', 'InternalApiController@discoverCategories'); Route::post('status/compose', 'InternalApiController@composePost'); + Route::get('loops', 'ApiController@loops'); + Route::post('loops/watch', 'ApiController@loopWatch'); }); Route::group(['prefix' => 'local'], function () { Route::get('i/follow-suggestions', 'ApiController@followSuggestions');