-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathangular-restheart.module.js
50 lines (38 loc) · 1.04 KB
/
angular-restheart.module.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(function () {
'use strict';
angular.module('restheart', [
'LocalStorageModule',
'base64',
'restangular',
'ui.router'
]).provider('restheart', restheart);
function restheart() {
this.setBaseUrl = function (f) {
this._baseUrl = f;
};
this.setLogicBaseUrl = function (f) {
this._logicBaseUrl = f;
};
this.getBaseUrl = function() {
return this._baseUrl;
};
this.getLogicBaseUrl = function() {
return this._logicBaseUrl;
};
this.onForbidden = function (f) {
this.onForbidden = f;
};
this.onTokenExpired = function (f) {
this.onTokenExpired = f;
};
this.onUnauthenticated = function (f) {
this.onUnauthenticated = f;
};
this.onNetworkError = function (f) {
this.onNetworkError = f;
};
this.$get = function () {
return this;
};
};
})();