Skip to content

Commit

Permalink
Merge pull request #2105 from department-of-veterans-affairs/Hotfix_s…
Browse files Browse the repository at this point in the history
…ervice_chiefs_not_deleting

Hotfix service chiefs not deleting
  • Loading branch information
Pelentan authored Aug 25, 2023
2 parents e5496f2 + 312cf81 commit cd4163a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions LEAF_Request_Portal/admin/templates/mod_svcChief.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ function removeUser(groupID = -1, userID = '') {
return;
} else {
$.ajax({
async: false,
type: 'POST',
url: "../api/service/" + groupID + "/members/_" + userID,
data: {'CSRFToken': '<!--{$CSRFToken}-->'},
Expand Down Expand Up @@ -420,6 +421,7 @@ function pruneMember(groupID, userID) {
return;
} else {
$.ajax({
async: false,
type: 'POST',
url: "../api/service/" + groupID + "/members/_" + userID + "/prune",
data: {'CSRFToken': '<!--{$CSRFToken}-->'},
Expand All @@ -437,6 +439,7 @@ function reactivateMember(groupID, userID) {
return;
} else {
$.ajax({
async: false,
type: 'POST',
url: "../api/service/" + groupID + "/members/_" + userID + "/reactivate",
data: {'CSRFToken': '<!--{$CSRFToken}-->'},
Expand Down

0 comments on commit cd4163a

Please sign in to comment.