mirror of
https://github.com/friendica/friendica
synced 2025-04-26 15:50:10 +00:00
API: We now support two more timeline api endpoints
This commit is contained in:
parent
d148ff0336
commit
dd38cc330f
7 changed files with 220 additions and 20 deletions
|
@ -142,10 +142,10 @@ return [
|
|||
'/statuses/{id:\d+}/unpin' => [Module\Api\Mastodon\Unimplemented::class, [ R::POST]],
|
||||
'/suggestions' => [Module\Api\Mastodon\Unimplemented::class, [R::GET ]],
|
||||
'/suggestions/{id:\d+}' => [Module\Api\Mastodon\Unimplemented::class, [R::DELETE ]],
|
||||
'/timelines/home' => [Module\Api\Mastodon\Unimplemented::class, [R::GET ]],
|
||||
'/timelines/home' => [Module\Api\Mastodon\Timelines\Home::class, [R::GET ]],
|
||||
'/timelines/list/{id:\d+}' => [Module\Api\Mastodon\Unimplemented::class, [R::GET ]],
|
||||
'/timelines/public' => [Module\Api\Mastodon\Timelines\PublicTimeline::class, [R::GET ]],
|
||||
'/timelines/tag/{hashtag}' => [Module\Api\Mastodon\Unimplemented::class, [R::GET ]],
|
||||
'/timelines/tag/{hashtag}' => [Module\Api\Mastodon\Timelines\Tag::class, [R::GET ]],
|
||||
'/trends' => [Module\Api\Mastodon\Trends::class, [R::GET ]],
|
||||
],
|
||||
'/v2' => [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue