From c8eb50bf573cbfc80d4a0fd77b8617d03d2e2c06 Mon Sep 17 00:00:00 2001 From: Fabien O'Carroll Date: Fri, 5 Mar 2021 12:37:49 +0000 Subject: [PATCH] Fixed ordering of event timelime refs https://github.com/TryGhost/Team/issues/469 We order the set of all events by created_at, but were not fetching the individual events with the same order applies, this resulted in incorrect results. --- ghost/members-api/lib/repositories/event/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ghost/members-api/lib/repositories/event/index.js b/ghost/members-api/lib/repositories/event/index.js index 173d0c4c30..1a6a7cb57a 100644 --- a/ghost/members-api/lib/repositories/event/index.js +++ b/ghost/members-api/lib/repositories/event/index.js @@ -95,6 +95,8 @@ module.exports = class EventRepository { options.limit = 10; } + options.order = 'created_at desc'; + const allEventPages = await Promise.all([ this.getNewsletterSubscriptionEvents(options), this.getSubscriptionEvents(options),