authors table view
[angular-drzb] / app / js / app.js
index 0d81180..22d056f 100644 (file)
@@ -8,6 +8,8 @@ angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives',
     $routeProvider.when('/confirmation/:registrationId', {templateUrl: 'partials/confirmation.html', controller: RegistrationCtrl});
     $routeProvider.when('/draft/:registrationId', {templateUrl: 'partials/draft.html', controller: RegistrationCtrl});
     $routeProvider.when('/verified/:registrationId', {templateUrl: 'partials/verified.html', controller: RegistrationCtrl});
+    $routeProvider.when('/review/:registrationId', {templateUrl: 'partials/review.html', controller: RegistrationCtrl});
     $routeProvider.when('/list', {templateUrl: 'partials/list.html', controller: ListCtrl});
+    $routeProvider.when('/authors', {templateUrl: 'partials/authors.html', controller: AuthorsCtrl});
     $routeProvider.otherwise({redirectTo: '/registration/'});
   }]);