in js/needinfo.js [114:142]
function loadTeamConfig() {
// populate additional cookie data in NeedInfoConfig
loadSettingsInternal();
document.getElementById('oldest-search-date').value = NeedInfoConfig.lastdate == null ?
getTodaysDateMinusOneYear() : NeedInfoConfig.lastdate;
NeedInfoConfig.developers = {};
LastErrorText = '';
$("#errors").empty();
prepPage();
var team = getTeam();
if (team == 'empty') {
// don't load anything.
return;
}
// load a specific team config file.
let jsonUrl = 'js/' + team + '.json';
$.getJSON(jsonUrl, function (teamConfig) {
NeedInfoConfig.developers = teamConfig.developers;
loadPage();
}).fail(function (jqXHR, textStatus, errorThrown) {
console.log("getJSON call failed for some reason.", jsonUrl, errorThrown)
});
}