small update in models : idUser and idArtcle are not required anymore to allow anyone to connect and add a new empty book
(function(){
'use strict';
angular.module('ammico')
.controller('routeClassCtrl', function($scope, $location) {
$scope.isActive = function(route) {
return route === $location.path();
};
});
})();