aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/api_spec
AgeCommit message (Collapse)Author
2020-09-01Fix removing an account from a listHaelwenn (lanodan) Monnier
Mastodon (Frontend) changed a different method for deletes, keeping old format as mastodon documentation is too loose
2020-08-19relay fix for admin-feAlexander Strizhakov
2020-08-11added paginate+search for admin/MediaProxy URLsMaksim Pechnikov
2020-07-31[#1985] Prevented force login on registration if account approval and/or ↵Ivan Tashkinov
email confirmation needed. Refactored login code in OAuthController, reused in AccountController. Added tests.
2020-07-30ChatMessage schema: Add preview cards.lain
2020-07-26OpenAPI: remove accidentally pasted buffer dataAlibek Omarov
2020-07-26OpenAPI: Replace actor_id by account_id to follow ChatMessage schemaAlibek Omarov
2020-07-23Support blocking via query parameters as well and document the change.Mark Felder
2020-07-21Allow unblocking a domain via query paramsEgor Kislitsyn
2020-07-17OpenAPI: Add :id to follower/following endpoints, fixes #1958Alex Gleason
2020-07-15Merge branch 'develop' into refactor/notification_settingsMark Felder
2020-07-14[#1940] Added `admin_token` param (as `admin_api_params/0`) to existing ↵Ivan Tashkinov
Admin API OpenAPI operations.
2020-07-13Merge branch 'develop' into refactor/notification_settingsMark Felder
2020-07-10Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵lain
chat-federation-information
2020-07-09Merge branch '1723-token-fixes' into 'develop'lain
AccountController: Return scope in proper format. Closes #1723 See merge request pleroma/pleroma!2694
2020-07-09Merge branch 'features/favicons' into 'develop'lain
Add support for remote favicons See merge request pleroma/pleroma!2261
2020-07-08AccountController: Fix muting / unmuting reblogs.lain
2020-07-08Add changelog and documentationHaelwenn (lanodan) Monnier
2020-07-07AccountController: Remove unused `update_?` routes.lain
These were not documented and are also not used anymore.
2020-07-06Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵lain
chat-federation-information
2020-07-03Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵lain
features/mastoapi-2.9.0-status_text
2020-07-03AccountController: Make setting accepts_chat_messages possible.lain
2020-07-03Account Schema: Add `accepts_chat_messages`lain
2020-06-29Fix CastAndValidate plugEgor Kislitsyn
2020-06-29AccountOperation: Correctly describe create response.lain
2020-06-29Merge branch '1031-parent-visible' into 'develop'lain
Resolve "Add `pleroma.parent_visible` to the status view" Closes #1031 See merge request pleroma/pleroma!2679
2020-06-29ApiSpec.Schemas.Account: import description from ↵Haelwenn (lanodan) Monnier
differences_in_mastoapi_responses
2020-06-26MastoAPI: Show source field when deletingHaelwenn (lanodan) Monnier
2020-06-26Rename notification "privacy_option" settingMark Felder
2020-06-26Simplify notification filtering settings furtherMark Felder
2020-06-26AccountController: Return scope in proper format.lain
2020-06-25Merge branch 'develop' into refactor/notification_settingsMark Felder
2020-06-24Status schema: Add parent_visible.lain
2020-06-22Merge branch 'add-muted-to-notifications' into 'develop'lain
Add `pleroma.is_muted` property to notifications Closes #1812 See merge request pleroma/pleroma!2670
2020-06-22Update NotificationOperation specEgor Kislitsyn
2020-06-22Merge branch 'feature/1739-account-endpoints' into 'develop'lain
account visibility in masto api Closes #1739 See merge request pleroma/pleroma!2488
2020-06-22Merge branch 'feature/1854-emoji-pagination' into 'develop'lain
Emoji and packs pagination Closes #1854 See merge request pleroma/pleroma!2658
2020-06-20Apply suggestion to ↵Alexander Strizhakov
lib/pleroma/web/api_spec/operations/pleroma_emoji_pack_operation.ex
2020-06-20Apply suggestion to ↵lain
lib/pleroma/web/api_spec/operations/pleroma_emoji_pack_operation.ex
2020-06-19Merge branch 'issue/1855' into 'develop'feld
#1855 MediaProxy cache invalidation via Admin API See merge request pleroma/pleroma!2648
2020-06-19[#1873] Fixes missing :offset pagination param support. Added pagination ↵Ivan Tashkinov
support for hashtags search.
2020-06-19default page size for filesAlexander Strizhakov
2020-06-18emoji pagination for pack show actionAlexander Strizhakov
2020-06-18emoji packs paginationAlexander Strizhakov
2020-06-17Merge branch 'develop' into issue/1855Mark Felder
2020-06-17Remove `poll` from `notification_type` OpenAPI specEgor Kislitsyn
2020-06-15Merge branch 'develop' into issue/1855Maksim Pechnikov
2020-06-13Merge branch '1851-favorites-pagination' into 'develop'rinpatch
StatusController: Correctly paginate favorites. Closes #1851 See merge request pleroma/pleroma!2636
2020-06-12added admin api for MediaProxy cache invalidationMaksim Pechnikov
2020-06-09StatusController: Correctly paginate favorites.lain
Favorites were paginating wrongly, because the pagination headers where using the id of the id of the `Create` activity, while the ordering was by the id of the `Like` activity. This isn't easy to notice in most cases, as they usually have a similar order because people tend to favorite posts as they come in. This commit adds a way to give different pagination ids to the pagination helper, so we can paginate correctly in cases like this.