mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update routes
This commit is contained in:
parent
1a3c929256
commit
8da292bf91
2 changed files with 2 additions and 6 deletions
|
@ -12,9 +12,3 @@ use Illuminate\Http\Request;
|
||||||
| is assigned the "api" middleware group. Enjoy building your API!
|
| is assigned the "api" middleware group. Enjoy building your API!
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
Route::post('/users/{username}/inbox', 'FederationController@userInbox');
|
|
||||||
|
|
||||||
Route::group(['prefix' => 'api/v2'], function() {
|
|
||||||
Route::get('profile/{username}/status/{postid}', 'PublicApiController@status');
|
|
||||||
Route::get('comments/{username}/status/{postId}', 'PublicApiController@statusComments');
|
|
||||||
});
|
|
|
@ -46,6 +46,8 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
|
||||||
Route::get('notifications', 'InternalApiController@notifications');
|
Route::get('notifications', 'InternalApiController@notifications');
|
||||||
Route::post('notifications', 'InternalApiController@notificationMarkAllRead');
|
Route::post('notifications', 'InternalApiController@notificationMarkAllRead');
|
||||||
Route::get('discover', 'InternalApiController@discover');
|
Route::get('discover', 'InternalApiController@discover');
|
||||||
|
Route::get('profile/{username}/status/{postid}', 'PublicApiController@status');
|
||||||
|
Route::get('comments/{username}/status/{postId}', 'PublicApiController@statusComments');
|
||||||
});
|
});
|
||||||
Route::group(['prefix' => 'local'], function () {
|
Route::group(['prefix' => 'local'], function () {
|
||||||
Route::get('i/follow-suggestions', 'ApiController@followSuggestions');
|
Route::get('i/follow-suggestions', 'ApiController@followSuggestions');
|
||||||
|
|
Loading…
Reference in a new issue