Use :restrict_unauthenticated testing for more granular control

This commit is contained in:
Mark Felder 2020-09-01 10:43:44 -05:00 committed by rinpatch
parent 549c895d80
commit 2011142ed9
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ defmodule Pleroma.Web.Feed.TagController do
alias Pleroma.Web.Feed.FeedView
def feed(conn, params) do
if Pleroma.Config.get!([:instance, :public]) do
unless Pleroma.Config.restrict_unauthenticated_access?(:activities, :local) do
render_feed(conn, params)
else
render_error(conn, :not_found, "Not found")

View File

@ -38,7 +38,7 @@ defmodule Pleroma.Web.Feed.UserController do
end
def feed(conn, params) do
if Pleroma.Config.get!([:instance, :public]) do
unless Pleroma.Config.restrict_unauthenticated_access?(:profiles, :local) do
render_feed(conn, params)
else
errors(conn, {:error, :not_found})

View File

@ -46,7 +46,7 @@ defmodule Pleroma.Web.Metadata do
end
defp activated_providers do
if Pleroma.Config.get!([:instance, :public]) do
unless Pleroma.Config.restrict_unauthenticated_access?(:activities, :local) do
Pleroma.Config.get([__MODULE__, :providers], [])
else
[]