chore: add unsubscribeIds to demo users (#50468)

Real users get this property when created, so it should be in the demo
users too.
This commit is contained in:
Oliver Eyton-Williams
2023-05-22 16:14:31 +02:00
committed by GitHub
parent 7209d535e8
commit 6521b9bd90
2 changed files with 6 additions and 3 deletions

View File

@@ -4730,5 +4730,6 @@ module.exports = {
isDonating: false,
emailAuthLinkTTL: null,
emailVerifyTTL: null,
externalId: ''
externalId: '',
unsubscribeId: 'tBX8stC5jiustPBteF2mV'
};

View File

@@ -86,7 +86,8 @@ const demoUser = {
emailAuthLinkTTL: null,
emailVerifyTTL: null,
keyboardShortcuts: true,
externalId: ''
externalId: '',
unsubscribeId: 'ecJxUi7OM49f24hTpauP8'
};
const blankUser = {
@@ -146,7 +147,8 @@ const blankUser = {
isDonating: false,
emailAuthLinkTTL: null,
emailVerifyTTL: null,
externalId: ''
externalId: '',
unsubscribeId: 'ecJxUi7OM49f24hTpauP8'
};
MongoClient.connect(MONGOHQ_URL, { useNewUrlParser: true }, (err, client) => {