19b9cb105d
An account document is attached to a user document if an account of the user is on the server. It may be missing if the user is on a remote server.
20 lines
443 B
TypeScript
20 lines
443 B
TypeScript
import config from '../../conf';
|
|
|
|
export default function(res, user, redirect: boolean) {
|
|
const expires = 1000 * 60 * 60 * 24 * 365; // One Year
|
|
res.cookie('i', user.account.token, {
|
|
path: '/',
|
|
domain: `.${config.host}`,
|
|
secure: config.url.substr(0, 5) === 'https',
|
|
httpOnly: false,
|
|
expires: new Date(Date.now() + expires),
|
|
maxAge: expires
|
|
});
|
|
|
|
if (redirect) {
|
|
res.redirect(config.url);
|
|
} else {
|
|
res.sendStatus(204);
|
|
}
|
|
}
|