user.service.js 279 Bytes
(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) {

    }

  })();