mario-core 3.0.0-admin → 3.0.2-admin
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 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -1004,7 +1004,7 @@ var export_to_pdf$1 = "Export to PDF";
|
|
|
1004
1004
|
var the_data_is_taken_from_the_home_screen$1 = "The data is taken from the home screen";
|
|
1005
1005
|
var make_sure_everything_is_set_correctly_before_exporting$1 = "Make sure everything is set correctly before exporting.";
|
|
1006
1006
|
var cancel$1 = "Cancel";
|
|
1007
|
-
var hey$1 = "Hey
|
|
1007
|
+
var hey$1 = "Hey";
|
|
1008
1008
|
var readiness_to_learn$1 = "Readiness to Learn";
|
|
1009
1009
|
var high_impact_learning_strategies$1 = "High Impact Learning Strategies";
|
|
1010
1010
|
var reflection$1 = "Reflection";
|
|
@@ -6346,6 +6346,7 @@ var setStudentList = createAction("users/setStudentList");
|
|
|
6346
6346
|
var USER_URL$1 = BASE_URL + "/api/user";
|
|
6347
6347
|
var CHANGE_PASSWORD = BASE_URL + "/api/Account/changePassword";
|
|
6348
6348
|
var ACCOUNT_URL$1 = BASE_URL + "/api/account";
|
|
6349
|
+
var EDU_USER_URL = BASE_URL + "/api/User/delete-item-user";
|
|
6349
6350
|
var get$5 = function get(filter) {
|
|
6350
6351
|
return api.get("" + USER_URL$1, {
|
|
6351
6352
|
params: filter
|
|
@@ -6361,7 +6362,7 @@ var update$5 = function update(data) {
|
|
|
6361
6362
|
return api.put(USER_URL$1 + "/" + data.id, data);
|
|
6362
6363
|
};
|
|
6363
6364
|
var remove$3 = function remove(id) {
|
|
6364
|
-
return api["delete"](
|
|
6365
|
+
return api["delete"](EDU_USER_URL + "/" + id);
|
|
6365
6366
|
};
|
|
6366
6367
|
var changePassword = function changePassword(formData) {
|
|
6367
6368
|
return api.post(CHANGE_PASSWORD, formData);
|