Order history by `changed_at, published_at`

When a bunch of entries are marked as read at once, they should have the
same `changed_at`; fall back to sorting them chronologically by
publication date.
This commit is contained in:
Naïm Favier 2023-06-04 14:20:56 +02:00 committed by Frédéric Guillot
parent 1aeb1b20da
commit 7d1609bd93
1 changed files with 1 additions and 2 deletions

View File

@ -25,8 +25,7 @@ func (h *handler) showHistoryPage(w http.ResponseWriter, r *http.Request) {
offset := request.QueryIntParam(r, "offset", 0)
builder := h.store.NewEntryQueryBuilder(user.ID)
builder.WithStatus(model.EntryStatusRead)
builder.WithOrder("changed_at")
builder.WithDirection("desc")
builder.WithOrder("changed_at DESC, published_at DESC")
builder.WithOffset(offset)
builder.WithLimit(user.EntriesPerPage)