@itutoring/itutoring_application_js_api 1.3.11 → 1.3.12
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/toolkit/Toolkit.jsx +3 -0
package/package.json
CHANGED
package/toolkit/Toolkit.jsx
CHANGED
|
@@ -5,6 +5,7 @@ class Toolkit
|
|
|
5
5
|
{
|
|
6
6
|
static ModuleInfo = null;
|
|
7
7
|
static UserDataLoaded = false;
|
|
8
|
+
static AuthDone = false;
|
|
8
9
|
|
|
9
10
|
/**
|
|
10
11
|
* Main function to initialize any toolkit module.
|
|
@@ -15,6 +16,8 @@ class Toolkit
|
|
|
15
16
|
this.ModuleInfo = await this.GetModuleProperties(moduleUid);
|
|
16
17
|
|
|
17
18
|
await this.RequestAccess(moduleUid);
|
|
19
|
+
|
|
20
|
+
this.AuthDone = true;
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
/***** API Methods ******/
|