client/app/app.js
changeset 178 a3e1106b6f96
parent 176 a8231241f50d
--- a/client/app/app.js	Wed Jul 08 12:48:37 2015 +0200
+++ b/client/app/app.js	Wed Jul 08 17:45:44 2015 +0200
@@ -15,11 +15,6 @@
         });
         
         $routeProvider.
-        when('/', {
-            controller: 'homeCtrl',
-            templateUrl: 'home/home.html',
-            authRequired: false
-        }).
         when('/my_visit', {
             controller: 'my_visitCtrl',
             templateUrl: 'my_visit/my_visit.html',
@@ -71,7 +66,7 @@
             authRequired: false
         }).
         otherwise({
-            redirectTo: '/'
+            redirectTo: '/my_visit'
         });
     })
     .run( function($rootScope, $location, $window, $http, authApi, context) {