Do not require authentication for user search in MastoAPI
This commit is contained in:
parent
8c65b69d4a
commit
1aa4994f6d
2 changed files with 8 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue