client/app/Auth/auth_controller.js
author rougeronj
Mon, 23 Mar 2015 12:25:19 +0100
changeset 26 c7dfe7185ef7
parent 25 4053d9a44548
permissions -rw-r--r--
rename 'gallery' to 'slides' to handle the slides pages

(function(){
  'use strict';


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