fix : fetch paths

This commit is contained in:
daragh 2023-12-30 01:55:45 +00:00
parent 040fdeaf4a
commit 0af81c6efa
No known key found for this signature in database

View file

@ -7,6 +7,7 @@ function get_keys() {
let request = {auth: {user: username, pass: password}};
fetch('http://127.0.0.1:8087/ldap/ssh', {
// can switch this to get with auth headers i think
method: 'POST',
body: JSON.stringify(request),
mode: 'cors',
@ -42,7 +43,7 @@ function add_key() {
document.getElementById('formStatus').innerHTML = "<span style='background-color: red; color: white'>Key cannot be empty</span>";
return;
}
fetch('http://127.0.0.1:8087/ldap/add', {
fetch('http://127.0.0.1:8087/ldap/ssh/add', {
method: 'POST',
body: JSON.stringify(request),
mode: 'cors',
@ -74,7 +75,7 @@ function delete_key(row_idx) {
let password = document.getElementById("pass").value;
let request = {auth: {user: username, pass: password}, key: key};
fetch('http://127.0.0.1:8087/ldap/delete', {
fetch('http://127.0.0.1:8087/ldap/ssh', {
method: 'DELETE',
body: JSON.stringify(request),
mode: 'cors',