client/app/Auth/auth_controller.js
author rougeronj
Wed, 25 Mar 2015 15:55:38 +0100
changeset 39 b714bcbe915c
parent 25 4053d9a44548
permissions -rw-r--r--
update slideshow template

(function(){
  'use strict';


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