mario-education 2.4.509-release → 2.4.511-feedback
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/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -6016,7 +6016,9 @@ var importStudentByTeacher = function importStudentByTeacher(teacherId, formData
|
|
|
6016
6016
|
return marioCore.apiUpload.post(CSV_FILE_TEACHER + "/adminImportStudentByTeacherId/" + teacherId, formData);
|
|
6017
6017
|
};
|
|
6018
6018
|
var importUsersCSV = function importUsersCSV(formData) {
|
|
6019
|
-
return marioCore.apiUpload.post(CSV_FILE_TEACHER + "/adminImport", formData
|
|
6019
|
+
return marioCore.apiUpload.post(CSV_FILE_TEACHER + "/adminImport", formData, {
|
|
6020
|
+
timeout: 400000
|
|
6021
|
+
});
|
|
6020
6022
|
};
|
|
6021
6023
|
var downloadTemplateFileUser = function downloadTemplateFileUser() {
|
|
6022
6024
|
return marioCore.api.get(CSV_FILE_TEACHER + "/download-template-file-user");
|