forked from AkkomaGang/akkoma
[#1895] Applied code review suggestion.
This commit is contained in:
parent
20461137a3
commit
3f8370a285
1 changed files with 5 additions and 8 deletions
|
@ -88,15 +88,12 @@ def direct(%{assigns: %{user: user}} = conn, params) do
|
|||
)
|
||||
end
|
||||
|
||||
defp restrict_unauthenticated?(local_only) do
|
||||
config_key =
|
||||
if local_only do
|
||||
:local
|
||||
else
|
||||
:federated
|
||||
end
|
||||
defp restrict_unauthenticated?(_local_only = true) do
|
||||
Pleroma.Config.get([:restrict_unauthenticated, :timelines, :local])
|
||||
end
|
||||
|
||||
Pleroma.Config.get([:restrict_unauthenticated, :timelines, config_key])
|
||||
defp restrict_unauthenticated?(_) do
|
||||
Pleroma.Config.get([:restrict_unauthenticated, :timelines, :federated])
|
||||
end
|
||||
|
||||
# GET /api/v1/timelines/public
|
||||
|
|
Loading…
Reference in a new issue