mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 19:29:11 +00:00
introduce max_id parameter in feed.atom
This commit is contained in:
parent
f0cde24f71
commit
9c61f60558
1 changed files with 6 additions and 0 deletions
|
@ -25,6 +25,7 @@ defmodule Pleroma.Web.OStatus.OStatusController do
|
|||
order_by: [desc: :id]
|
||||
|
||||
activities = query
|
||||
|> restrict_max(opts)
|
||||
|> Repo.all
|
||||
|
||||
response = user
|
||||
|
@ -54,6 +55,11 @@ defmodule Pleroma.Web.OStatus.OStatusController do
|
|||
end
|
||||
end
|
||||
|
||||
defp restrict_max(query, %{"max_id" => max_id}) do
|
||||
from activity in query, where: activity.id < ^max_id
|
||||
end
|
||||
defp restrict_max(query, _), do: query
|
||||
|
||||
def salmon_incoming(conn, _) do
|
||||
{:ok, body, _conn} = read_body(conn)
|
||||
{:ok, doc} = decode_or_retry(body)
|
||||
|
|
Loading…
Reference in a new issue