diff options
author | 2022-07-13 09:57:47 +0200 | |
---|---|---|
committer | 2022-07-13 09:57:47 +0200 | |
commit | 6418307c64da236a0268f4496f793d982e128ad0 (patch) | |
tree | 9c781c812697412936d671e0e42272dce8cf2d78 /internal/api/model/timeline.go | |
parent | [chore] improved router logging, recovery and error handling (#705) (diff) | |
download | gotosocial-6418307c64da236a0268f4496f793d982e128ad0.tar.xz |
[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'
Diffstat (limited to 'internal/api/model/timeline.go')
-rw-r--r-- | internal/api/model/timeline.go | 2 |
1 files changed, 2 insertions, 0 deletions
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 } |