Merge branch 'link-headers-chats' into 'develop'

Add link headers in ChatController.index2

See merge request pleroma/pleroma!3562
This commit is contained in:
Alex Gleason 2021-12-19 17:35:50 +00:00
commit d1510c98d7
1 changed files with 3 additions and 1 deletions

View File

@ -151,7 +151,9 @@ defmodule Pleroma.Web.PleromaAPI.ChatController do
index_query(user, params)
|> Pagination.fetch_paginated(params)
render(conn, "index.json", chats: chats)
conn
|> add_link_headers(chats)
|> render("index.json", chats: chats)
end
defp index_query(%{id: user_id} = user, params) do