Skip to content

Commit

Permalink
update endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
brianAxonify committed Sep 20, 2024
1 parent 330a2ff commit ee591f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contentScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function startDeleting(ids) {
function sendNextRequest() {
if (index < ids.length) {
let id = ids[index];
let apiUrl = `${window.location.origin}/api/delete/${id}`; // Adjust the endpoint as needed
let apiUrl = `${window.location.origin}/axonify/admin/articles/${id}`; // Adjust the endpoint as needed

// Send DELETE request using jQuery with custom header
$.ajax({
Expand Down

0 comments on commit ee591f0

Please sign in to comment.