Merge pull request #11384 from annando/tusky-upload

API: Enable picture upload via Tusky again
This commit is contained in:
Hypolite Petovan 2022-03-30 16:41:59 -04:00 committed by GitHub
commit e9a6c4a7e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -229,7 +229,6 @@ return [
'/lists/{id:\d+}' => [Module\Api\Mastodon\Lists::class, [R::GET, R::PUT, R::DELETE]],
'/lists/{id:\d+}/accounts' => [Module\Api\Mastodon\Lists\Accounts::class, [R::GET, R::POST, R::DELETE]],
'/markers' => [Module\Api\Mastodon\Markers::class, [R::GET, R::POST]], // Dummy, not supported
'/media' => [Module\Api\Mastodon\Media::class, [ R::POST]],
'/media/{id:\d+}' => [Module\Api\Mastodon\Media::class, [R::GET, R::PUT ]],
'/mutes' => [Module\Api\Mastodon\Mutes::class, [R::GET ]],
'/notifications' => [Module\Api\Mastodon\Notifications::class, [R::GET ]],
@ -270,6 +269,7 @@ return [
'/trends' => [Module\Api\Mastodon\Trends::class, [R::GET ]],
],
'/v{version:\d+}' => [
'/media' => [Module\Api\Mastodon\Media::class, [ R::POST]],
'/search' => [Module\Api\Mastodon\Search::class, [R::GET ]],
],
'/meta' => [Module\Api\Mastodon\Unimplemented::class, [R::POST ]], // not supported