client/app/Auth/auth_controller.js
author rougeronj
Tue, 31 Mar 2015 15:27:26 +0200
changeset 50 c641b33f910f
parent 25 4053d9a44548
permissions -rw-r--r--
remove the initial migration to prepare custom user implementation

(function(){
  'use strict';


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