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
commit 2011142ed9
3 changed files with 3 additions and 3 deletions

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})