Blame view

src/app/components/user/user.controller.js 289 Bytes
66ee5529f   Palak Handa   initial commit
1
2
3
4
5
6
7
8
9
10
11
12
  (function(){
  	'use strict';
  
  		angular.module('sbAdminApp')
  			.controller('userCtrl', ['$scope', '$rootScope', '$state','$log', 'AUTH_EVENTS', 'userService', 'toaster', userCtrl]);
  			
  		function userCtrl($scope, $rootScope, $state,$log, AUTH_EVENTS, userService ,toaster) {
  
  
  		}
  
  	})();