summaryrefslogtreecommitdiff
path: root/src/api/endpoints
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-07 18:56:55 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-07 18:56:55 +0900
commita53874edc265f6cd1aab54dbbbfcd996e81aec17 (patch)
tree42914bfbf9a50817da08e5e64fd9e8cf8206e099 /src/api/endpoints
parentwip (diff)
downloadsharkey-a53874edc265f6cd1aab54dbbbfcd996e81aec17.tar.gz
sharkey-a53874edc265f6cd1aab54dbbbfcd996e81aec17.tar.bz2
sharkey-a53874edc265f6cd1aab54dbbbfcd996e81aec17.zip
wip
Diffstat (limited to 'src/api/endpoints')
-rw-r--r--src/api/endpoints/othello/games.ts6
-rw-r--r--src/api/endpoints/othello/invitations.ts4
2 files changed, 9 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))));
diff --git a/src/api/endpoints/othello/invitations.ts b/src/api/endpoints/othello/invitations.ts
index f462ef0bf9..02fb421fbc 100644
--- a/src/api/endpoints/othello/invitations.ts
+++ b/src/api/endpoints/othello/invitations.ts
@@ -4,6 +4,10 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
// Find session
const invitations = await Matching.find({
child_id: user._id
+ }, {
+ sort: {
+ _id: -1
+ }
});
// Reponse