also put publicVisibility in preloaded nodeinfo
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
FloatingGhost 2023-03-15 22:59:58 +00:00
parent 86a5cf3c82
commit fe7045632b
1 changed files with 5 additions and 1 deletions

View File

@ -71,7 +71,11 @@ defmodule Pleroma.Web.Nodeinfo.Nodeinfo do
restrictedNicknames: Config.get([Pleroma.User, :restricted_nicknames]),
skipThreadContainment: Config.get([:instance, :skip_thread_containment], false),
privilegedStaff: Config.get([:instance, :privileged_staff]),
localBubbleInstances: Config.get([:instance, :local_bubble], [])
localBubbleInstances: Config.get([:instance, :local_bubble], []),
publicTimelineVisibility: %{
federated: !Config.restrict_unauthenticated_access?(:timelines, :federated),
local: !Config.restrict_unauthenticated_access?(:timelines, :local)
}
}
}
end