@idsoftsource/initial-process 3.4.8 → 3.4.9
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.
|
@@ -2661,9 +2661,9 @@ class UserSkillSetService {
|
|
|
2661
2661
|
// --------------------------------
|
|
2662
2662
|
// Delete User Skill Set
|
|
2663
2663
|
// --------------------------------
|
|
2664
|
-
deleteUserSkillSet(
|
|
2664
|
+
deleteUserSkillSet(ids) {
|
|
2665
2665
|
return this.httpClient.delete(`${this.baseUrl}/DeleteUserSkillSet`, {
|
|
2666
|
-
|
|
2666
|
+
body: ids,
|
|
2667
2667
|
});
|
|
2668
2668
|
}
|
|
2669
2669
|
// --------------------------------
|
|
@@ -5276,7 +5276,7 @@ class PreviewComponent {
|
|
|
5276
5276
|
try {
|
|
5277
5277
|
const serverId = this.skillServerIds[index];
|
|
5278
5278
|
if (serverId) {
|
|
5279
|
-
await firstValueFrom(this.userSkillSetService.deleteUserSkillSet(serverId));
|
|
5279
|
+
await firstValueFrom(this.userSkillSetService.deleteUserSkillSet([serverId]));
|
|
5280
5280
|
}
|
|
5281
5281
|
}
|
|
5282
5282
|
finally {
|
|
@@ -10012,7 +10012,7 @@ class SkillsComponent {
|
|
|
10012
10012
|
if (!confirm('Delete this skill?'))
|
|
10013
10013
|
return;
|
|
10014
10014
|
this.deletingSkillKey.set(this.getSkillKey(skill));
|
|
10015
|
-
this.userSkillSetService.deleteUserSkillSet(skill.id).subscribe({
|
|
10015
|
+
this.userSkillSetService.deleteUserSkillSet([skill.id]).subscribe({
|
|
10016
10016
|
next: () => {
|
|
10017
10017
|
this.getuserSkillsData();
|
|
10018
10018
|
this.deletingSkillKey.set(null);
|