mirror of
https://github.com/friendica/friendica
synced 2024-11-18 02:23:40 +00:00
Fix #7670: Inbox needs to be accessed via POST
This commit is contained in:
parent
c0cb1a194e
commit
5951a522d1
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ return [
|
|||
'/hashtag' => [Module\Hashtag::class, [R::GET]],
|
||||
'/home' => [Module\Home::class, [R::GET]],
|
||||
'/help[/{doc:.+}]' => [Module\Help::class, [R::GET]],
|
||||
'/inbox[/{nickname}]' => [Module\Inbox::class, [R::GET]],
|
||||
'/inbox[/{nickname}]' => [Module\Inbox::class, [R::GET, R::POST]],
|
||||
'/invite' => [Module\Invite::class, [R::GET, R::POST]],
|
||||
|
||||
'/install' => [
|
||||
|
|
Loading…
Reference in a new issue