AngularJS applications may need to communicate across the controllers. Such a communication might be needed to send notifications or to pass data between the controllers. Although there can be different approaches to achieve this goal, one that is readily available is the event system of $scope and $rootScope. Both of these objects - $scope and $rootScope - support three methods namely $broadcast(), $emit() and $on() that facilitate event driven publisher-subscriber model for sending notifications and passing data between the controllers. In this article I will discuss how to raise events using $broadcast() and $emit() and then how to handle those events using $on().

one of solution to raise authenticate success in web app is to used this feature 

after authenticationSuccess call this :

 $rootScope.$broadcast('authenticationSuccess');

and listen to that event 

 $scope.$on('authenticationSuccess', function() {

        getAccount(); 

 });