Order followers

This commit is contained in:
Gabe Kangas 2022-01-24 15:39:32 -08:00
parent 88b20803b7
commit 56878b8bbe
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ SElECT count(*) FROM ap_followers WHERE approved_at is not null;
SElECT count(*) FROM ap_outbox;
-- name: GetFederationFollowersWithOffset :many
SELECT iri, inbox, name, username, image, created_at FROM ap_followers WHERE approved_at is not null LIMIT $1 OFFSET $2;
SELECT iri, inbox, name, username, image, created_at FROM ap_followers WHERE approved_at is not null ORDER BY created_at DESC LIMIT $1 OFFSET $2;
-- name: GetRejectedAndBlockedFollowers :many
SELECT iri, name, username, image, created_at, disabled_at FROM ap_followers WHERE disabled_at is not null;

View file

@ -153,7 +153,7 @@ func (q *Queries) GetFederationFollowerApprovalRequests(ctx context.Context) ([]
}
const getFederationFollowersWithOffset = `-- name: GetFederationFollowersWithOffset :many
SELECT iri, inbox, name, username, image, created_at FROM ap_followers WHERE approved_at is not null LIMIT $1 OFFSET $2
SELECT iri, inbox, name, username, image, created_at FROM ap_followers WHERE approved_at is not null ORDER BY created_at DESC LIMIT $1 OFFSET $2
`
type GetFederationFollowersWithOffsetParams struct {