kongadmin
Version:
Kong admin GUI
20 lines (17 loc) • 412 B
JavaScript
(function() {
'use strict';
angular.module('frontend.core.interceptors')
.factory('TemplateCacheInterceptor', [
function() {
return {
request: function( config ) {
if( config.url.indexOf( ".html") > -1) {
config.url += '?' + new Date().getTime
}
return config;
}
};
}
])
;
}());