Blame view
src/app/components/authentication/authentication.service.js
421 Bytes
66ee5529f
|
1 2 3 4 5 6 7 |
(function(){ 'use strict'; angular.module('sbAdminApp') .service('LoginService', ['$q', '$http', '$rootScope', '$resource', 'BASE_URL', 'USER_ROLES', LoginService]); function LoginService($q, $http, $rootScope, $resource, BASE_URL, USER_ROLES) { |
3459bcf48
|
8 9 10 11 |
this.createForm = function(){ return $resource(BASE_URL+'/userProfiles', {}); |
66ee5529f
|
12 |
} |
3459bcf48
|
13 |
|
66ee5529f
|
14 15 16 |
} })(); |