client/app/Auth/auth_controller.js
author rougeronj
Mon, 23 Mar 2015 12:26:39 +0100
changeset 27 2b508b65571a
parent 25 4053d9a44548
permissions -rw-r--r--
add routes for books and slides

(function(){
  'use strict';


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