tellform/public/modules/core/controllers/home.client.controller.js
2015-07-06 18:21:43 -07:00

16 lines
374 B
JavaScript
Executable file

'use strict';
angular.module('core').controller('HomeController', ['$rootScope', '$scope', 'User', 'Auth', '$state',
function($rootScope, $scope, User, Auth, $state) {
$scope = $rootScope;
$scope.user = Auth.ensureHasCurrentUser(User);
$scope.authentication = Auth;
if($scope.authentication.isAuthenticated()){
$state.go('listForms');
}
}
]);