Merge pull request #1287 from akihikodaki/account

Introduce account document to user document
This commit is contained in:
syuilo
2018-03-26 14:51:03 +09:00
committed by GitHub
70 changed files with 355 additions and 280 deletions

View File

@@ -2,7 +2,7 @@ import config from '../../conf';
export default function(res, user, redirect: boolean) {
const expires = 1000 * 60 * 60 * 24 * 365; // One Year
res.cookie('i', user.token, {
res.cookie('i', user.account.token, {
path: '/',
domain: `.${config.hostname}`,
secure: config.url.substr(0, 5) === 'https',