blob: fb58015b33eeafe7e9e3c444289e5528d9030de5 [file] [log] [blame]
(function() {
'use strict';
/**
* @ngdoc overview
* @name xos.helpers
* @description this is the module that group all the helpers service and components for XOS
**/
angular
.module('xos.helpers', [
'ngCookies',
'ngResource',
'ngAnimate',
'xos.uiComponents'
])
.config(config)
/**
* @ngdoc service
* @name xos.helpers._
* @description Wrap [lodash](https://lodash.com/docs) in an Angular Service
**/
.factory('_', $window => $window._ );
function config($httpProvider, $interpolateProvider, $resourceProvider) {
$httpProvider.interceptors.push('SetCSRFToken');
$interpolateProvider.startSymbol('{$');
$interpolateProvider.endSymbol('$}');
// NOTE http://www.masnun.com/2013/09/18/django-rest-framework-angularjs-resource-trailing-slash-problem.html
$resourceProvider.defaults.stripTrailingSlashes = false;
}
})();