Request time cache, tracking collaborators etc

This commit is contained in:
Jori Lallo
2016-08-15 12:51:26 +02:00
parent 94e39d74bf
commit 11f6c533b8
15 changed files with 141 additions and 33 deletions

View File

@ -72,10 +72,10 @@ router.post('auth.slack', async (ctx) => {
}
ctx.body = { data: {
user: await presentUser(user),
team: await presentTeam(team),
user: await presentUser(ctx, user),
team: await presentTeam(ctx, team),
accessToken: user.getJwtToken(),
}};
} };
});
export default router;