(function () { 'use strict'; // Module that provides functionality for the Auth user var mod = angular.module('user', []); var config = { userRemoteServiceUrl: userRemoteServiceUrl, userProfileServiceUrl: userProfileServiceUrl, tagsRemoteServiceUrl: tagsRemoteServiceUrl, themesRemoteServiceUrl: themesRemoteServiceUrl, notificationsRemoteServiceUrl: notificationsRemoteServiceUrl, cache: 'userCache', authCache: 'authcache', userCacheItem: 'me', authTokenItem: 'authtoken', tagSummaryCacheItem: 'myTagSummary', frameworksCacheItem: 'myFrameworks', deployedAssignmentsCacheItem: 'deployedAssignments', }; mod.value('userConfig', config); })();