1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-11-16 10:36:37 +01:00

[#468] Adjusted scope restriction for MastodonAPIController#index.

This commit is contained in:
Ivan Tashkinov 2019-02-20 14:05:02 +03:00
parent 337367d764
commit 3ad91ec3c1

View File

@ -582,7 +582,7 @@ defmodule Pleroma.Web.Router do
delete("/auth/sign_out", MastodonAPIController, :logout)
scope [] do
pipe_through(:oauth_read)
pipe_through(:oauth_read_or_unauthenticated)
get("/web/*path", MastodonAPIController, :index)
end
end