-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.js
78 lines (76 loc) · 1.45 KB
/
user.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* The user.js extends the Boxcite object & provides
* all the user-specific properties & methods.
*
* @copyright mQuotient Solutions Limited
* @developer Soumya Deb [DebWebDev]
*
*/
var user = new Boxcite;
user.prefix = 'mq.boxcite.user.';
user.login = function ( data ) {
try {
var method = 'login';
response = this.loginRequest( method, data );
return response;
}
catch ( error ) {
error = "Error : " + error;
throw error;
}
}
user.logout = function ( data ) {
try {
var method = 'logout';
response = this.logoutRequest( method );
return response;
}
catch ( error ) {
error = "Error : " + error;
throw error;
}
}
user.changePassword = function ( data ) {
try {
var method = 'changePassword';
response = this.sendRequest( method, data );
return response;
}
catch ( error ) {
error = "Error : " + error;
throw error;
}
}
user.resetPassword = function ( data ) {
try {
var method = 'resetPassword';
response = this.sendRequest( method, data );
return response;
}
catch ( error ) {
error = "Error : " + error;
throw error;
}
}
user.find = function () {
try {
var method = 'find';
response = this.sendRequest( method, {} );
return response;
}
catch ( error ) {
error = "Error : " + error;
throw error;
}
}
user.locations = function () {
try {
var method = 'locations';
response = this.sendRequest( method, {} );
return response;
}
catch ( error ) {
error = "Error : " + error;
throw error;
}
}