From e02e1d17859c3c6a704eaf1a06106150a47d22ab Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 23 Aug 2020 04:14:02 +0000 Subject: [PATCH] Enable inbox for the system account --- static/routes.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/static/routes.config.php b/static/routes.config.php index 3991ec4e36..4227db2406 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -162,6 +162,7 @@ return [ '/followers/{owner}' => [Module\Followers::class, [R::GET]], '/following/{owner}' => [Module\Following::class, [R::GET]], '/friendica[/json]' => [Module\Friendica::class, [R::GET]], + '/friendica/inbox' => [Module\Inbox::class, [R::GET, R::POST]], '/fsuggest/{contact:\d+}' => [Module\FriendSuggest::class, [R::GET, R::POST]],