Browse Source

Add api route

Daniel Supernault 6 years ago
parent
commit
f40d4b77da
2 changed files with 2 additions and 1 deletions
  1. 1 1
      config/pixelfed.php
  2. 1 0
      routes/web.php

+ 1 - 1
config/pixelfed.php

@@ -23,7 +23,7 @@ return [
     | This value is the version of your PixelFed instance.
     |
     */
-    'version' => '0.5.3',
+    'version' => '0.5.4',
 
     /*
     |--------------------------------------------------------------------------

+ 1 - 0
routes/web.php

@@ -53,6 +53,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
             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');
+            Route::get('status/{id}/replies', 'InternalApiController@statusReplies');
         });
         Route::group(['prefix' => 'local'], function () {
             Route::get('i/follow-suggestions', 'ApiController@followSuggestions');