mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
325 B
PHP
14 lines
325 B
PHP
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
Route::post('/users/{username}/inbox', 'FederationController@userInbox');
|
|
|
|
|
|
Route::group(['prefix' => 'api'], function() {
|
|
Route::group(['prefix' => 'v1'], function() {
|
|
Route::post('apps', 'Api\ApiV1Controller@apps');
|
|
Route::get('instance', 'Api\ApiV1Controller@instance');
|
|
});
|
|
});
|