From 6418307c64da236a0268f4496f793d982e128ad0 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Wed, 13 Jul 2022 09:57:47 +0200 Subject: [feature] Add back/next buttons to profiles for paging through statuses (#708) * add GetAccountWebStatuses to db * add WebStatusesGet func to processor * don't add limit to next/prev links if 0 * take query params for next/prev statuses * add separate next + prev links for convenience * show 'nothing here' message if no statuses exist * add back / next links to profiles * allow paging down only * go fmt ./... * 'recent public toots' -> 'latest public toots' --- internal/api/model/timeline.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/api/model/timeline.go') diff --git a/internal/api/model/timeline.go b/internal/api/model/timeline.go index 71d839ed2..4c9c78a88 100644 --- a/internal/api/model/timeline.go +++ b/internal/api/model/timeline.go @@ -25,4 +25,6 @@ import "github.com/superseriousbusiness/gotosocial/internal/timeline" type TimelineResponse struct { Items []timeline.Timelineable LinkHeader string + NextLink string + PrevLink string } -- cgit v1.2.3