in functions/src/config.ts [40:57]
static async loadGlobalConfig() {
if (
this.ADDITIONAL_PROJECTS.length > 0 &&
this.FEATURED_BLACKLIST_PROJECTS.length > 0
) {
return;
}
const additionalData = await this.github.getRawContent(
this.ADDITIONAL_PROJECTS_URL
);
this.ADDITIONAL_PROJECTS = JSON.parse(additionalData).projects;
const blacklistData = await this.github.getRawContent(
this.FEATURED_BLACKLIST_PROJECTS_URL
);
this.FEATURED_BLACKLIST_PROJECTS = JSON.parse(blacklistData).projects;
}