Skip to content

Instantly share code, notes, and snippets.

@prinzdezibel
Created January 12, 2018 16:23
Show Gist options
  • Save prinzdezibel/0ad9965be61b612df3c4c47e4bcfeafb to your computer and use it in GitHub Desktop.
Save prinzdezibel/0ad9965be61b612df3c4c47e4bcfeafb to your computer and use it in GitHub Desktop.
methods.loadShops = function () {
Logger.info("Starting load Shops");
if (!checkForShops()) {
const shops = require("../private/data/Shops.json");
shops.forEach((shop) => {
Shops.insert(shop);
Logger.info(`Inserted shop: ${shop.name}`);
});
Logger.info("Shops loaded");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment