fix : fetch paths
This commit is contained in:
parent
040fdeaf4a
commit
0af81c6efa
1 changed files with 3 additions and 2 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue