mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
parent
ce57b46358
commit
750c19014a
1 changed files with 7 additions and 6 deletions
|
@ -171,12 +171,13 @@ adminControllers = {
|
|||
email: email,
|
||||
password: password
|
||||
}).then(function (user) {
|
||||
|
||||
if (req.session.user === undefined) {
|
||||
req.session.user = user.id;
|
||||
}
|
||||
res.json(200, {redirect: '/ghost/'});
|
||||
}, function (error) {
|
||||
api.settings.edit('email', email).then(function () {
|
||||
if (req.session.user === undefined) {
|
||||
req.session.user = user.id;
|
||||
}
|
||||
res.json(200, {redirect: '/ghost/'});
|
||||
});
|
||||
}).otherwise(function (error) {
|
||||
res.json(401, {error: error.message});
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue