Do not require authentication for user search in MastoAPI
authorMark Felder <feld@FreeBSD.org>
Thu, 18 Apr 2019 17:44:25 +0000 (12:44 -0500)
committerMark Felder <feld@FreeBSD.org>
Thu, 18 Apr 2019 17:44:25 +0000 (12:44 -0500)
docs/api/differences_in_mastoapi_responses.md
lib/pleroma/web/router.ex

index 923d94db236af00945a50b66d8805841feba5a72..ed3fd9b671e337ecc85c512487a1401eaa203671 100644 (file)
@@ -41,6 +41,12 @@ Has these additional fields under the `pleroma` object:
 - `is_admin`: boolean, true if user is an admin
 - `confirmation_pending`: boolean, true if a new user account is waiting on email confirmation to be activated
 
+## Account Search
+
+Behavior has changed:
+
+- `/api/v1/accounts/search`: Does not require authentication
+
 ## Notifications
 
 Has these additional fields under the `pleroma` object:
index a809347bea4b24a9325ddb4854c180c38a374f98..8b665d61b4211c58426fe8eda718805d3f47ef9d 100644 (file)
@@ -242,7 +242,6 @@ defmodule Pleroma.Web.Router do
       get("/accounts/verify_credentials", MastodonAPIController, :verify_credentials)
 
       get("/accounts/relationships", MastodonAPIController, :relationships)
-      get("/accounts/search", MastodonAPIController, :account_search)
 
       get("/accounts/:id/lists", MastodonAPIController, :account_lists)
       get("/accounts/:id/identity_proofs", MastodonAPIController, :empty_array)
@@ -377,6 +376,8 @@ defmodule Pleroma.Web.Router do
 
     get("/trends", MastodonAPIController, :empty_array)
 
+    get("/accounts/search", MastodonAPIController, :account_search)
+
     scope [] do
       pipe_through(:oauth_read_or_unauthenticated)