14 lines
		
	
	
		
			369 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			369 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| app.controller('homeCtrl', [
 | |
|   '$rootScope', '$scope', 'Auth', 'localStorageService', '$location', 'azp@oauth3.org',
 | |
|   function ($rootScope, $scope, Auth, localStorageService, $location, Oauth3) {
 | |
| 
 | |
|   var vm = this;
 | |
|   vm.oauth3 = Oauth3.oauth3;
 | |
| 
 | |
|   vm.achievement = true;
 | |
| 
 | |
|   vm.notificationMessage = "testing stuff...";
 | |
| 
 | |
|   throw new Error('loaded home controller');
 | |
| }]);
 |