0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Updated admin route for newsletter settings (#14576)

This commit is contained in:
Rishabh Garg 2022-04-25 21:24:41 +05:30 committed by Matt Hanley
parent 05b5059918
commit f9eff8a216

View file

@ -52,7 +52,7 @@ class NewslettersService {
getSigninURL(token) {
const adminUrl = urlUtils.urlFor('admin', true);
const signinURL = new URL(adminUrl);
signinURL.hash = `/settings/members-email-labs/?verifyEmail=${token}`;
signinURL.hash = `/settings/newsletters/?verifyEmail=${token}`;
return signinURL.href;
}
};