summaryrefslogtreecommitdiff
path: root/src/api/endpoints/othello/games.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/endpoints/othello/games.ts')
-rw-r--r--src/api/endpoints/othello/games.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/api/endpoints/othello/games.ts b/src/api/endpoints/othello/games.ts
index da85de1c1f..39963fcd29 100644
--- a/src/api/endpoints/othello/games.ts
+++ b/src/api/endpoints/othello/games.ts
@@ -15,7 +15,11 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
} : {};
// Fetch games
- const games = await Game.find(q);
+ const games = await Game.find(q, {
+ sort: {
+ _id: -1
+ }
+ });
// Reponse
res(Promise.all(games.map(async (g) => await pack(g, user))));