client/app/Auth/auth_controller.js
author rougeronj
Tue, 31 Mar 2015 12:21:22 +0200
changeset 45 19f3f0a7fbd7
parent 25 4053d9a44548
permissions -rw-r--r--
add idInventory for slides saved from a research and not coming from Jamespot

(function(){
  'use strict';


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