Do not try to render home template on login/logout

This commit is contained in:
Joe Fiorini
2015-02-04 17:10:42 -05:00
parent 16119114dc
commit 109c9d8832
5 changed files with 6 additions and 24 deletions

View File

@@ -387,12 +387,12 @@ angular.module('Tower', [
}).
when('/login', {
templateUrl: urlPrefix + 'partials/home.html',
templateUrl: urlPrefix + 'partials/blank.html',
controller: 'Authenticate'
}).
when('/logout', {
templateUrl: urlPrefix + 'partials/home.html',
templateUrl: urlPrefix + 'partials/blank.html',
controller: 'Authenticate'
}).