| changeset 25 | 4053d9a44548 |
| parent 14 | 4d27fbc3f9df |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/app/Auth/auth_controller.js Mon Mar 23 12:24:13 2015 +0100 @@ -0,0 +1,15 @@ +(function(){ + 'use strict'; + + + angular.module('ammicoAuth',['ngRoute']) + .config(function ($routeProvider) { + $routeProvider + .when('/', { + templateUrl: 'auth/auth.html', + controller: 'authCtrl' + }); + }) + .controller('authCtrl', function(){ + }); +})();