theopenbar/interface

View on GitHub
public/scripts/controllers/home.controller.js

Summary

Maintainability
A
0 mins
Test Coverage
app.controller('homeController', ['$scope', '$location', 'AuthService',
    function ($scope, $location, AuthService) {
        AuthService.getUserStatus()
            .then(function(){
                    $scope.loggedIn = AuthService.isLoggedIn();
            })
}]);