@itutoring/itutoring_application_js_api 1.3.31 → 1.3.32

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.
@@ -65,9 +65,11 @@ class AttendanceManager
65
65
  return atEvents;
66
66
  }
67
67
 
68
- static async GetAttendanceFromEvent()
68
+ static async GetAttendanceFromEvent(id)
69
69
  {
70
- var data = await APIController.Get(this.#MODULE, this.#GET_ATTENDANCE_FROM_EVENT);
70
+ var data = await APIController.Get(this.#MODULE, this.#GET_ATTENDANCE_FROM_EVENT, {
71
+ "id": id,
72
+ });
71
73
  this.CheckForError(data);
72
74
 
73
75
  data = JSON.parse(data);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.3.31",
3
+ "version": "1.3.32",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",