@itutoring/itutoring_application_js_api 1.4.21 → 1.4.22
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.
|
@@ -36,7 +36,7 @@ class TeacherProfileModule
|
|
|
36
36
|
static #VALIDATE_PERSONAL_INFO = "ValidatePersonalInfo";
|
|
37
37
|
static #VALIDATE_SUBJECTS = "ValidateSubjects";
|
|
38
38
|
static #VALIDATE_TIME_AVAILABILITY = "ValidateTimeAvailability";
|
|
39
|
-
static #
|
|
39
|
+
static #IS_PROFILE_COMPLETED = "IsProfileCompleted";
|
|
40
40
|
static #SET_PROFILE_COMPLETE = "SetProfileComplete";
|
|
41
41
|
|
|
42
42
|
static async noPersonalInfoSet()
|
|
@@ -69,9 +69,9 @@ class TeacherProfileModule
|
|
|
69
69
|
return data;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
static async
|
|
72
|
+
static async isProfileCompleted()
|
|
73
73
|
{
|
|
74
|
-
var data = await APIController.Get(this.#MODULE, this.#
|
|
74
|
+
var data = await APIController.Get(this.#MODULE, this.#IS_PROFILE_COMPLETED);
|
|
75
75
|
return data;
|
|
76
76
|
}
|
|
77
77
|
|