2015-07-14 17:12:32 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import appConstants from '../constants/application_constants';
|
|
|
|
|
|
|
|
export function getSubdomainSettings(subdomain) {
|
|
|
|
let settings = appConstants.subdomains.filter((sdSettings) => subdomain === sdSettings.subdomain);
|
|
|
|
|
|
|
|
if(settings.length === 1) {
|
|
|
|
return settings[0];
|
|
|
|
} else if(settings.length === 0) {
|
2015-07-27 18:06:02 +02:00
|
|
|
return appConstants.defaultDomain;
|
|
|
|
// throw new Error('There are no subdomain settings for the subdomain: ' + subdomain);
|
2015-07-14 17:12:32 +02:00
|
|
|
} else {
|
|
|
|
throw new Error('Matched multiple subdomains. Adjust constants file.');
|
|
|
|
}
|
2015-07-27 18:06:02 +02:00
|
|
|
}
|