update config.tmpl and add auth_Jamespot (so jamespot can send us a jwt and log in automatically)
(function(){
'use strict';
angular.module('ammico')
.controller('routeClassCtrl', function($scope, $location) {
$scope.isActive = function(route) {
return route === $location.path();
};
});
})();