mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 19:29:11 +00:00
Group response declarations together
This commit is contained in:
parent
a24eed0f57
commit
2a402fb395
1 changed files with 6 additions and 6 deletions
|
@ -65,12 +65,6 @@ defmodule Pleroma.Gopher.Server.ProtocolHandler do
|
||||||
"#{type}#{name}\t#{selector}\t#{address}\t#{port}\r\n"
|
"#{type}#{name}\t#{selector}\t#{address}\t#{port}\r\n"
|
||||||
end
|
end
|
||||||
|
|
||||||
def response("") do
|
|
||||||
info("Welcome to #{Keyword.get(@instance, :name, "Pleroma")}!") <>
|
|
||||||
link("Public Timeline", "/main/public") <>
|
|
||||||
link("Federated Timeline", "/main/all") <> ".\r\n"
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_activities(activities) do
|
def render_activities(activities) do
|
||||||
activities
|
activities
|
||||||
|> Enum.reverse()
|
|> Enum.reverse()
|
||||||
|
@ -93,6 +87,12 @@ defmodule Pleroma.Gopher.Server.ProtocolHandler do
|
||||||
|> Enum.join("\r\n")
|
|> Enum.join("\r\n")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def response("") do
|
||||||
|
info("Welcome to #{Keyword.get(@instance, :name, "Pleroma")}!") <>
|
||||||
|
link("Public Timeline", "/main/public") <>
|
||||||
|
link("Federated Timeline", "/main/all") <> ".\r\n"
|
||||||
|
end
|
||||||
|
|
||||||
def response("/main/public") do
|
def response("/main/public") do
|
||||||
posts =
|
posts =
|
||||||
ActivityPub.fetch_public_activities(%{"type" => ["Create"], "local_only" => true})
|
ActivityPub.fetch_public_activities(%{"type" => ["Create"], "local_only" => true})
|
||||||
|
|
Loading…
Reference in a new issue