forked from AkkomaGang/akkoma
also put publicVisibility in preloaded nodeinfo
This commit is contained in:
parent
86a5cf3c82
commit
fe7045632b
1 changed files with 5 additions and 1 deletions
|
@ -71,7 +71,11 @@ def get_nodeinfo("2.0") do
|
||||||
restrictedNicknames: Config.get([Pleroma.User, :restricted_nicknames]),
|
restrictedNicknames: Config.get([Pleroma.User, :restricted_nicknames]),
|
||||||
skipThreadContainment: Config.get([:instance, :skip_thread_containment], false),
|
skipThreadContainment: Config.get([:instance, :skip_thread_containment], false),
|
||||||
privilegedStaff: Config.get([:instance, :privileged_staff]),
|
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
|
end
|
||||||
|
|
Loading…
Reference in a new issue