From ad98d35a6db1fb2632e75f0c3c9aec266ba9d6f7 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 8 Nov 2018 18:38:19 -0700 Subject: [PATCH] Add api routes, just inbox for now --- routes/api.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/api.php b/routes/api.php index 852967954..8ddca964a 100644 --- a/routes/api.php +++ b/routes/api.php @@ -12,3 +12,5 @@ use Illuminate\Http\Request; | is assigned the "api" middleware group. Enjoy building your API! | */ +Route::post('/users/{username}/inbox', 'FederationController@userInbox'); +