Blame view

src/app/components/user/user.service.js 279 Bytes
66ee5529f   Palak Handa   initial commit
1
2
3
4
5
6
7
8
9
10
11
  (function(){
    'use strict';
  
      angular.module('sbAdminApp')
          .service('userService', ['$q', '$http', '$rootScope', '$resource', 'BASE_URL', 'USER_ROLES', userService]);
  
      function userService($q, $http, $rootScope, $resource, BASE_URL, USER_ROLES) {
  
      }
  
    })();