@itutoring/itutoring_application_js_api 1.1.29 → 1.1.30
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.
|
@@ -8,7 +8,7 @@ class CustomerEduPortal
|
|
|
8
8
|
|
|
9
9
|
static #GET_ALL_EVENTS = "GetAllEvents";
|
|
10
10
|
static #CREATE_EVENT = "CreateEvent";
|
|
11
|
-
static #
|
|
11
|
+
static #SET_GUESTS = "SetGuests";
|
|
12
12
|
static #OPEN_CONFERENCE = "OpenConference";
|
|
13
13
|
static #MAKE_CONFERENCE_PRIVATE = "MakeConferencePrivate";
|
|
14
14
|
static #UPDATE_PASSCODE = "UpdatePassCode";
|
|
@@ -47,9 +47,9 @@ class CustomerEduPortal
|
|
|
47
47
|
return eventObj;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
static async
|
|
50
|
+
static async SetGuests(eventId, guests)
|
|
51
51
|
{
|
|
52
|
-
var event = await APIController.Post(this.#MODULE, this.#
|
|
52
|
+
var event = await APIController.Post(this.#MODULE, this.#SET_GUESTS, {
|
|
53
53
|
"eventId": eventId,
|
|
54
54
|
"guests": JSON.stringify(guests),
|
|
55
55
|
});
|