theopenbar/interface

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

Summary

Maintainability
A
0 mins
Test Coverage
app.controller('logoutController', ['$scope', '$location', 'AuthService',
    function ($scope, $location, AuthService) {
        $scope.logout = function () {
            // call logout from service
            AuthService.logout()
                .then(function () {
                    $location.path('/');
                });
        };
}]);