what's XCS2-Dashboard/dashboard ?

some one can share this?

Path: /Applications/Xcode.app/Contents/Developer/usr/share/xcs/xcsd/app/app_global_config.js 

Above: Xcode 7 have this config.

`function initDashboard() { if (cluster.isMaster || cluster.isDisabled) {

    var dashboardPath = path.join(__dirname, '../public/XCS2-Dashboard/dashboard');
    if (fs.existsSync(dashboardPath)) {
        redisClass.client().hset('XCSDashboard key', 'isDashboardInstalled', dashboardPath);
        logger.info('Xcode Server Dashboard is installed.');
    } else {
        redisClass.client().hdel('XCSDashboard key', 'isDashboardInstalled');
        logger.debug('Xcode Server Dashboard is not installed.');
    }

}

}