0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Made data generator import labels from the base pack when specified

no issue

This will allow us to use a custom (non-random) set of labels, which should look more realistic.
This commit is contained in:
Sam Lord 2023-02-20 12:02:44 +00:00
parent 0706d5f273
commit 25eaf05395

View file

@ -126,6 +126,7 @@ class DataGenerator {
let stripeProducts;
let stripePrices;
let benefits;
let labels;
// Use an existant set of data for a more realisitic looking site
if (this.useBaseData) {
@ -194,8 +195,13 @@ class DataGenerator {
rows: ['stripe_price_id', 'interval', 'stripe_product_id', 'currency', 'amount', 'nickname']
});
labels = await jsonImporter.import({
name: 'labels',
data: baseData.labels
});
// Import settings
await transaction('settings').delete();
await transaction('settings').del();
await jsonImporter.import({
name: 'settings',
data: baseData.settings
@ -390,7 +396,7 @@ class DataGenerator {
await offersImporter.import({amount: 2});
const labelsImporter = new LabelsImporter(transaction);
const labels = await labelsImporter.import({amount: 10});
labels = await labelsImporter.import({amount: 10});
const membersLabelsImporter = new MembersLabelsImporter(transaction, {labels});
await membersLabelsImporter.importForEach(members, {