@insignia-education/api-sdk-js 0.15.84 → 0.15.85
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.
- package/package.json +1 -1
- package/src/api/v1/Users.js +6 -1
package/package.json
CHANGED
package/src/api/v1/Users.js
CHANGED
|
@@ -89,7 +89,12 @@ export default class Users {
|
|
|
89
89
|
};
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
/**
|
|
92
|
+
/**
|
|
93
|
+
* get() accepts an optional { courseId } filter to narrow to a single course.
|
|
94
|
+
* A row's recording_url_video/recording_url_audio are only populated once Zoom's
|
|
95
|
+
* recording is archived AND this user's UserCourse.recording_view allows it for that
|
|
96
|
+
* course (staff always see it) — null otherwise, even if a recording exists.
|
|
97
|
+
*/
|
|
93
98
|
sessions(userId) {
|
|
94
99
|
const base = `/users/${userId}/sessions`;
|
|
95
100
|
const client = this.#client;
|