mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-22 05:38:46 +00:00
Changed paypal redirect to subscription page (#9742)
This commit is contained in:
parent
d90d781740
commit
63bba13b5f
1 changed files with 2 additions and 2 deletions
|
|
@ -123,7 +123,7 @@ api.subscribeSuccess = {
|
|||
if (req.query.noRedirect) {
|
||||
res.respond(200);
|
||||
} else {
|
||||
res.redirect('/');
|
||||
res.redirect('/user/settings/subscription');
|
||||
}
|
||||
},
|
||||
};
|
||||
|
|
@ -147,7 +147,7 @@ api.subscribeCancel = {
|
|||
if (req.query.noRedirect) {
|
||||
res.respond(200);
|
||||
} else {
|
||||
res.redirect('/');
|
||||
res.redirect('/user/settings/subscription');
|
||||
}
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue