diff options
author | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2024-04-12 09:15:06 +0000 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2024-04-25 12:34:12 +0200 |
commit | 88412daf118f15a40119f0b47a740a442ec5040c (patch) | |
tree | 3b34a0d97eaa92b97579faa2def3548d571929a8 | |
parent | 9e6cf45906b9d56834d032d4e0fa436cc5e17031 (diff) | |
download | pleroma-88412daf118f15a40119f0b47a740a442ec5040c.tar.gz pleroma-88412daf118f15a40119f0b47a740a442ec5040c.zip |
Apply @lanodan's suggestion
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
-rw-r--r-- | lib/pleroma/web/api_spec/operations/account_operation.ex | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/pleroma/web/api_spec/operations/account_operation.ex b/lib/pleroma/web/api_spec/operations/account_operation.ex index 244f18dc7..85f02166f 100644 --- a/lib/pleroma/web/api_spec/operations/account_operation.ex +++ b/lib/pleroma/web/api_spec/operations/account_operation.ex @@ -517,9 +517,10 @@ defmodule Pleroma.Web.ApiSpec.AccountOperation do def familiar_followers_operation do %Operation{ tags: ["Retrieve account information"], - summary: "Followers you know", - operationId: "AccountController.relationships", - description: "Returns followers of given account you know.", + summary: "Followers that you follow", + operationId: "AccountController.familiar_followers", + description: + "Obtain a list of all accounts that follow a given account, filtered for accounts you follow.", security: [%{"oAuth" => ["read:follows"]}], parameters: [ Operation.parameter( |