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