aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/api_spec/operations/account_operation.ex
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-04-29 11:09:30 +0000
committerlain <lain@soykaf.club>2020-04-29 11:09:30 +0000
commit58fded9858edbeb318dc011cb313e82a86fbafcb (patch)
tree90539822a02e9ff1de91969ad179da907c031b4d /lib/pleroma/web/api_spec/operations/account_operation.ex
parent699fc9569fa06278baaec6804348375cb9891185 (diff)
parent4c0e53367acd74de04de070a5e33380f5e457163 (diff)
downloadpleroma-58fded9858edbeb318dc011cb313e82a86fbafcb.tar.gz
Merge branch 'automatic-authentication-and-instance-publicity-checks' into 'develop'
Automatic checks of authentication / authorization / instance publicity See merge request pleroma/pleroma!2409
Diffstat (limited to 'lib/pleroma/web/api_spec/operations/account_operation.ex')
-rw-r--r--lib/pleroma/web/api_spec/operations/account_operation.ex8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/pleroma/web/api_spec/operations/account_operation.ex b/lib/pleroma/web/api_spec/operations/account_operation.ex
index 2efe6e901..64e2e43c4 100644
--- a/lib/pleroma/web/api_spec/operations/account_operation.ex
+++ b/lib/pleroma/web/api_spec/operations/account_operation.ex
@@ -294,13 +294,13 @@ defmodule Pleroma.Web.ApiSpec.AccountOperation do
}
end
- def follows_operation do
+ def follow_by_uri_operation do
%Operation{
tags: ["accounts"],
- summary: "Follows",
+ summary: "Follow by URI",
operationId: "AccountController.follows",
security: [%{"oAuth" => ["follow", "write:follows"]}],
- requestBody: request_body("Parameters", follows_request(), required: true),
+ requestBody: request_body("Parameters", follow_by_uri_request(), required: true),
responses: %{
200 => Operation.response("Account", "application/json", AccountRelationship),
400 => Operation.response("Error", "application/json", ApiError),
@@ -615,7 +615,7 @@ defmodule Pleroma.Web.ApiSpec.AccountOperation do
}
end
- defp follows_request do
+ defp follow_by_uri_request do
%Schema{
title: "AccountFollowsRequest",
description: "POST body for muting an account",