diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2021-02-03 16:09:28 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2021-03-25 13:03:40 +0300 |
commit | 3ec1dbd9223aa44205e90967175f07cc532501ab (patch) | |
tree | c25eed18a5f38b2feb63cb7a889a1c110c0c8f98 /docs/development | |
parent | caadde3b04cf4c6509cc0841a338503e646221a0 (diff) | |
download | pleroma-3ec1dbd9223aa44205e90967175f07cc532501ab.tar.gz |
Let pins federate
- save object ids on pin, instead of activity ids
- pins federation
- removed pinned_activities field from the users table
- activityPub endpoint for user pins
- pulling remote users pins
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/API/differences_in_mastoapi_responses.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/development/API/differences_in_mastoapi_responses.md b/docs/development/API/differences_in_mastoapi_responses.md index a14fcb416..2ff56d3ca 100644 --- a/docs/development/API/differences_in_mastoapi_responses.md +++ b/docs/development/API/differences_in_mastoapi_responses.md @@ -38,6 +38,7 @@ Has these additional fields under the `pleroma` object: - `thread_muted`: true if the thread the post belongs to is muted - `emoji_reactions`: A list with emoji / reaction maps. The format is `{name: "☕", count: 1, me: true}`. Contains no information about the reacting users, for that use the `/statuses/:id/reactions` endpoint. - `parent_visible`: If the parent of this post is visible to the user or not. +- `pinned_at`: a datetime (iso8601) when status was pinned, `null` otherwise. ## Scheduled statuses |