client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
24 lines (21 loc) • 826 B
JavaScript
/* global moduleName config */
(function (ng) {
'use strict';
ng.module('appConstants', []);
ng.module("appConstants").constant('rootConstants', {
"server": config.coreApiUrl,
"production": false,
"scriptUrls": {
googleRecaptchaUi: {
sandbox: "https://www.google.com/recaptcha/api.js?render=explicit&onload=recaptchaCallback",
default: "prod-files/recaptcha-mock.js"
},
equifaxDeviceVerifyUi: {
sandbox: "https://ci-mpsnare.iovation.com/snare.js",
default: "prod-files/deviceVerification-mock.js",
fail: "prod-files/deviceVerification-mock-fail.js",
noLoad: "prod-files/deviceVerification-mock-fail-no-load.js"
}
}
});
}(angular));