Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-07 | Mastodon API: Fix private and direct statuses not being filtered out from ↵ | eugenijm | |
the public timeline for an authenticated user (`GET /api/v1/timelines/public`) | |||
2019-10-06 | Update test for custom fields when content-type urlencoded | kPherox | |
2019-10-06 | Update test for custom fields when name empty string | kPherox | |
2019-10-06 | Rename fields to fields_attributes | kPherox | |
2019-10-04 | notification_view.ex: Make sure `account` isn’t empty | Haelwenn (lanodan) Monnier | |
Related: https://git.pleroma.social/pleroma/pleroma/issues/1203 | |||
2019-09-14 | Apply suggestion to test/web/mastodon_api/mastodon_api_controller_test.exs | rinpatch | |
2019-09-14 | Apply suggestion to test/web/mastodon_api/mastodon_api_controller_test.exs | rinpatch | |
2019-09-14 | Mastodon API: Respect post privacy in favourited/reblogged endpoints | rinpatch | |
2019-09-10 | Add an endpoint to get multiple statuses by IDs | Egor Kislitsyn | |
2019-09-06 | Merge branch 'so-long-twitterapi' into 'develop' | rinpatch | |
Removing TwitterAPI See merge request pleroma/pleroma!1605 | |||
2019-09-05 | Merge branch 'feature/mastoapi-accounts-external' into 'develop' | Haelwenn | |
Mastdon API: Add ability to get a remote account by nickname to `/api/v1/accounts/:id` See merge request pleroma/pleroma!1622 | |||
2019-09-05 | Mastodon API Poll view: Fix handling of polls without an end date | rinpatch | |
2019-09-04 | Mastodon API: Add `pleroma.thread_muted` to Status entity | rinpatch | |
Needed for pleroma-fe!941 | |||
2019-09-03 | Mastdon API: Add ability to get a remote account by nickname to | rinpatch | |
`/api/v1/accounts/:id` | |||
2019-08-31 | Remove most of Pleroma.Web.TwitterAPI.TwitterAPI | rinpatch | |
2019-08-26 | Move test/web/mastodon_api/*_test.exs to test/web/mastodon_api/controllers ↵ | Egor Kislitsyn | |
and test/web/mastodon_api/views | |||
2019-08-26 | Extract MastodonAPIController's list actions into ↵ | Egor Kislitsyn | |
MastodonAPI.ListController; Add more tests | |||
2019-08-24 | Activity Expiration: Switch to 'expires_in' system. | lain | |
2019-08-24 | Merge remote-tracking branch 'origin/develop' into ↵ | lain | |
sixohsix/pleroma-post_expiration | |||
2019-08-21 | fixed clear config after test | Maksim Pechnikov | |
2019-08-20 | Merge branch 'feature/custom-fields' into 'develop' | lain | |
Add custom profile fields See merge request pleroma/pleroma!1488 | |||
2019-08-19 | added test helpers to clear config after tests | Maksim | |
2019-08-16 | Merge branch 'pleroma-conversations' into 'develop' | lain | |
Extended Pleroma Conversations See merge request pleroma/pleroma!1535 | |||
2019-08-14 | Implement Pleroma.Stats as GenServer | stwf | |
2019-08-14 | Merge remote-tracking branch 'origin/develop' into pleroma-conversations | lain | |
2019-08-14 | Use info.fields instead of source_data for remote users | Egor Kislitsyn | |
2019-08-14 | Add configurable account field name length limit | Egor Kislitsyn | |
2019-08-14 | Add configurable account field value length limit | Egor Kislitsyn | |
2019-08-14 | Fix tests | Egor Kislitsyn | |
2019-08-14 | Add custom profile fields | Egor Kislitsyn | |
2019-08-13 | tests for /web/mastodon_api/mastodon_api.ex | Maksim | |
2019-08-12 | ConversationView: Align parameter names with other views. | lain | |
2019-08-12 | Conversations: Use 'recipients' for accounts in conversation view. | lain | |
According to gargron, this is the intended usage. | |||
2019-08-10 | Merge branch 'develop' into 'fix/hide-follows-counters' | kaniini | |
# Conflicts: # CHANGELOG.md | |||
2019-08-10 | Mastodon API: Fix thread mute detection | rinpatch | |
It was calling CommonAPI.thread_muted? with post author's account instead of viewer's one. | |||
2019-08-09 | Mastodon API: Set follower/following counters to 0 when hiding | rinpatch | |
followers/following is enabled We are already doing that in AP representation, so I think we should do it here as well for consistency. | |||
2019-08-08 | Merge remote-tracking branch 'origin/develop' into pleroma-conversations | lain | |
2019-08-05 | Linting. | lain | |
2019-08-05 | Pleroma Conversations API: Add a way to set recipients. | lain | |
2019-08-03 | Remove spaces from the domain search | Sergey Suprunenko | |
2019-08-02 | Fix/mediaproxy whitelist base url | feld | |
2019-07-31 | StatusView: Return direct conversation id. | lain | |
2019-07-29 | Redirect not logged-in users to the MastoFE login page on private instances | Sergey Suprunenko | |
2019-07-28 | add account confirmation email resend in mastodon api | Sachin Joshi | |
2019-07-24 | Show the url advertised in the Activity in the Status JSON response | Sergey Suprunenko | |
2019-07-24 | WIP | Mike Verdone | |
2019-07-24 | Add `domain_blocking` to the relationship API (GET ↵ | Eugenij | |
/api/v1/accounts/relationships) | |||
2019-07-24 | Revert "squash! Expose expires_at datetime in mastoAPI only for the activity ↵ | Mike Verdone | |
actor" This reverts commit 2981821db834448bf9b2ba26590314e36201664c. | |||
2019-07-24 | squash! Expose expires_at datetime in mastoAPI only for the activity actor | Mike Verdone | |
NOTE: rewrite the commit msg | |||
2019-07-24 | Expose expires_at datetime in mastoAPI only for the activity actor | Mike Verdone | |
In the "pleroma" section of the MastoAPI for status activities you can see an expires_at item that states when the activity will expire, or nothing if the activity will not expire. The expires_at date is only visible to the person who posted the activity. This is the conservative approach in case some attacker decides to write a logger for expiring posts. However, in the future of OCAP, signed requests, and all that stuff, this attack might not be that likely. Some other pleroma dev should remove the restriction in the code at that time, if they're satisfied with the security implications of doing so. |