mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added default unsubscribe for single newsletter unsubscribe
refs https://github.com/TryGhost/Team/issues/1495
This commit is contained in:
parent
2ae8a5e14e
commit
7ca28de358
1 changed files with 8 additions and 1 deletions
|
@ -34,8 +34,15 @@ export default function UnsubscribePage() {
|
|||
|
||||
setMember(memberData);
|
||||
setSubscribedNewsletters(memberData?.newsletters || []);
|
||||
if (siteNewsletters?.length === 1) {
|
||||
try {
|
||||
await ghostApi.member.updateNewsletters({uuid: pageData.uuid, newsletters: []});
|
||||
} catch (e) {
|
||||
// ignore auto unsubscribe error
|
||||
}
|
||||
}
|
||||
})();
|
||||
}, [pageData.uuid, site.url]);
|
||||
}, [pageData.uuid, site.url, siteNewsletters?.length]);
|
||||
|
||||
// Case: Email not found
|
||||
if (member === null) {
|
||||
|
|
Loading…
Add table
Reference in a new issue