Crie uma nova pagina para cadastra novos usuários, porém quando tento cadastrar um novo usuário recebo a seguinte mensagem
POST http://localhost:3500/v1/usuario 401 (Unauthorized);
angular.module('carsweb', ['minhasDiretivas', 'ngAnimate', 'ngRoute'])
.config(function($routeProvider, $locationProvider, $httpProvider) {
$httpProvider.interceptors.push('tokenInterceptor');
//$locationProvider.html5Mode(true);
$routeProvider.when('/fotos', {
templateUrl: "partials/principal.html",
controller: "FotosController"
}).when('/fotos/new', {
templateUrl: "partials/cadastrar-fotos.html",
controller: "FotoController"
}).when('/fotos/edit/:id', {
templateUrl: "partials/editar-fotos.html",
controller: "FotoController"
}).when('/login', {
templateUrl: 'partials/login.html',
controller: 'LoginController'
}).when('/usuario/add', {
templateUrl: 'partials/cadastrar-usuario.html',
controller: 'UsuarioController'
});
$routeProvider.otherwise({
redirectTo: "/fotos"
});
});