0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Added mock fixture for paid newsletters

refs https://github.com/TryGhost/Team/issues/1490
This commit is contained in:
Djordje Vlaisavljevic 2022-04-21 22:02:58 +02:00
parent 0e105fec06
commit a95b1c002f

View file

@ -110,13 +110,15 @@ export const site = getSiteData({
id: 'weekly',
name: 'Weekly Rundown',
description: 'Best of last week',
subscribe_on_signup: true
subscribe_on_signup: true,
paid: true
},
{
id: 'daily',
name: 'Daily Brief',
description: 'One email every day',
subscribe_on_signup: false
subscribe_on_signup: false,
paid: false
}
]
});