mirror of
https://github.com/eggjs/egg.git
synced 2024-12-04 07:14:30 +00:00
8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
'use strict';
|
|
|
|
module.exports = function* () {
|
|
const minute = 60000;
|
|
if (this.request.body.remember) this.setCookie('remember', 1, { maxAge: minute });
|
|
this.redirect('/');
|
|
};
|