diff --git a/routes/web.php b/routes/web.php index 36ee013f4..a6fbb765a 100644 --- a/routes/web.php +++ b/routes/web.php @@ -120,6 +120,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact Route::get('discover', 'InternalApiController@discover'); Route::get('discover/posts', 'InternalApiController@discoverPosts')->middleware('auth:api'); Route::get('profile/{username}/status/{postid}', 'PublicApiController@status'); + Route::get('profile/{username}/status/{postid}/state', 'PublicApiController@statusState'); Route::get('comments/{username}/status/{postId}', 'PublicApiController@statusComments'); Route::get('likes/profile/{username}/status/{id}', 'PublicApiController@statusLikes'); Route::get('shares/profile/{username}/status/{id}', 'PublicApiController@statusShares');