client/app/Auth/auth_controller.js
author rougeronj
Fri, 03 Apr 2015 10:41:27 +0200
changeset 58 e71b49ff4a23
parent 25 4053d9a44548
permissions -rw-r--r--
add config.py to gitignore

(function(){
  'use strict';


  angular.module('ammicoAuth',['ngRoute'])
    .config(function ($routeProvider) {
      $routeProvider
        .when('/', {
          templateUrl: 'auth/auth.html',
          controller: 'authCtrl'
        });
    })
    .controller('authCtrl', function(){
    });
})();