1
0
mirror of https://github.com/ascribe/onion.git synced 2024-09-28 03:58:55 +02:00
onion/js/utils/constants_utils.js
2015-07-14 17:12:32 +02:00

15 lines
524 B
JavaScript

'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) {
throw new Error('There are no subdomain settings for the subdomain: ' + subdomain);
} else {
throw new Error('Matched multiple subdomains. Adjust constants file.');
}
}