diff options
author | lain <lain@soykaf.club> | 2020-11-04 16:18:11 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-11-04 16:18:11 +0100 |
commit | bae48c98e32af6c43fa668771c6253f299d4bf8a (patch) | |
tree | 0ceb2b31a2c65af23039e4074c51c495dd7dd8f8 /lib/pleroma/web/api_spec/operations/account_operation.ex | |
parent | 04b7505c75afbaa1f785b2adaf0313e9b0935fab (diff) | |
parent | 4800ee656bbcd8fe21fe56531123d3a18eccc911 (diff) | |
download | pleroma-bae48c98e32af6c43fa668771c6253f299d4bf8a.tar.gz |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into alexgleason/pleroma-block-behavior
Diffstat (limited to 'lib/pleroma/web/api_spec/operations/account_operation.ex')
-rw-r--r-- | lib/pleroma/web/api_spec/operations/account_operation.ex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/pleroma/web/api_spec/operations/account_operation.ex b/lib/pleroma/web/api_spec/operations/account_operation.ex index d90ddb787..4934b7788 100644 --- a/lib/pleroma/web/api_spec/operations/account_operation.ex +++ b/lib/pleroma/web/api_spec/operations/account_operation.ex @@ -335,6 +335,7 @@ defmodule Pleroma.Web.ApiSpec.AccountOperation do operationId: "AccountController.mutes", description: "Accounts the user has muted.", security: [%{"oAuth" => ["follow", "read:mutes"]}], + parameters: pagination_params(), responses: %{ 200 => Operation.response("Accounts", "application/json", array_of_accounts()) } @@ -348,6 +349,7 @@ defmodule Pleroma.Web.ApiSpec.AccountOperation do operationId: "AccountController.blocks", description: "View your blocks. See also accounts/:id/{block,unblock}", security: [%{"oAuth" => ["read:blocks"]}], + parameters: pagination_params(), responses: %{ 200 => Operation.response("Accounts", "application/json", array_of_accounts()) } |