@itutoring/itutoring_application_js_api 1.6.36 → 1.6.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -143,10 +143,11 @@ class ReservationSystem
|
|
|
143
143
|
* @param {*} msg
|
|
144
144
|
* @param {*} place must be PlaceID !
|
|
145
145
|
*/
|
|
146
|
-
static async SendRequest(
|
|
146
|
+
static async SendRequest(fname, lname, email, tel, msg, place)
|
|
147
147
|
{
|
|
148
148
|
await APIController.Post(this.#MODULE, this.#SEND_REQUEST, {
|
|
149
|
-
"
|
|
149
|
+
"fname": fname,
|
|
150
|
+
"lname": lname,
|
|
150
151
|
"email": email,
|
|
151
152
|
"tel": tel,
|
|
152
153
|
"msg": msg,
|
package/modules/TableExplorer.js
CHANGED
|
@@ -36,6 +36,15 @@ class TableExplorer
|
|
|
36
36
|
static #SET_SPECIAL_FILTER = "SetSpecialFilter";
|
|
37
37
|
static #REMOVE_FILTER = "RemoveFilter";
|
|
38
38
|
static #GET_NUMBER_OF_ENTRIES = "GetNumberOfEntries";
|
|
39
|
+
static #SET_SPECIAL_FILTER = "SetSpecialFilter";
|
|
40
|
+
|
|
41
|
+
static async setSpecialFilter(token, filter)
|
|
42
|
+
{
|
|
43
|
+
await APIController.Post(this.#MODULE, this.#SET_SPECIAL_FILTER, {
|
|
44
|
+
'token': token,
|
|
45
|
+
'filter': filter,
|
|
46
|
+
});
|
|
47
|
+
}
|
|
39
48
|
|
|
40
49
|
static async getNumberOfEntries(token)
|
|
41
50
|
{
|