(function () { "use strict"; var mod = angular.module("usersAdmin", [ "common.bootstrap", "ui.bootstrap", "ui.bootstrap.modal", ]); var templatePath = modulesSharedResourcesUrl + "Modules/usersAdmin/Views/"; var config = { templatePath: templatePath, rolesUrl: rolesUrl, applicationId: applicationId, msApplicationId: msApplicationId, appCode: appCode, apigatewayUrl: apigatewayUrl, myusersUrl: myusersUrl, userProfileServiceUrl: userProfileServiceUrl, tenantUrl: tenantUrl, }; mod.value("usersAdminConfig", config); mod.config([ "$logProvider", function ($logProvider) { // turn debugging off/on (no info or warn) if ($logProvider.debugEnabled) $logProvider.debugEnabled(true); }, ]); mod.config([ "$locationProvider", function ($locationProvider) { $locationProvider.html5Mode(true); $locationProvider.hashPrefix("!"); }, ]); //#endregion })();