Commit f0f4d80d26b2215b87dd434c5e21c9b260116fea
1 parent
fb6243b51f
Exists in
master
and in
2 other branches
agrego ruta para testear modulo unitareamente
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/js/route.js
1 | angular.module('focaLogin') | 1 | angular.module('focaLogin') |
2 | .config([ | 2 | .config([ |
3 | '$routeProvider', | 3 | '$routeProvider', |
4 | function($routeProvider) { | 4 | function($routeProvider) { |
5 | $routeProvider | 5 | $routeProvider |
6 | .when('/login', { | 6 | .when('/login', { |
7 | controller: 'focaLoginController', | 7 | controller: 'focaLoginController', |
8 | templateUrl: 'foca-login.html' | 8 | templateUrl: 'src/views/foca-login.html' |
9 | }) | 9 | }) |
10 | .when('/logout', { | 10 | .when('/logout', { |
11 | controller: 'focaLogoutController', | 11 | controller: 'focaLogoutController', |
12 | template: '' | 12 | template: '' |
13 | }); | 13 | }); |
14 | } | 14 | } |
15 | ]); | 15 | ]); |
16 | 16 |